https://github.com/rootkit-org/c-certification-roadmap
https://github.com/rootkit-org/c-certification-roadmap
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rootkit-org/c-certification-roadmap
- Owner: RootKit-Org
- License: gpl-3.0
- Created: 2021-06-07T21:55:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-07T03:50:53.000Z (over 3 years ago)
- Last Synced: 2025-01-14T18:07:30.644Z (12 months ago)
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C
### 1. Basic Operators
* \+
* \-
* \*
* /
* %
* ++
* --
* ==
* !=
* \>
* <
* \>=
* <=
* &&
* ||
* !
* &
* |
* ^
* ~
* <<
* \>>
* ?
* ,
* ->
* !
### 2. Conditions
* `if`
* `else`
* `else if`
* `while`
* `do while`
* `for`
### 3. Data Types
* char
* unsigned char
* signed char
* int
* unsigned int
* short
* unsigned short
* long
* unsigned long
* _bool
* long long
* unsigned long long
* intptr_t
* intmax_t
* int*_t
* int_fast*_t
* int_least*_t
* float
* double
* long double
* void
### 4. Control Statements
* `break`
* `continue`
* `goto`
* `return`
### 5. Structs
### 6. Type Conversion
### 7. Input and Output
* Networking
* Command line IO
* File IO