Skip to content

Commit 94edc5f

Browse files
authored
Update C_syntax.md
typos
1 parent e211a45 commit 94edc5f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

LearningC/C_Language_Shorts/C_syntax.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ void: no variable/value
9292

9393
## Operators
9494

95+
### binary
9596
\+ \- \* / % ^ \
96-
& | ^ ~
97+
### unary
98+
& | ^ ~
99+
### incremental
97100
\++ \--
98101

99-
### Numbers:
100-
> [!NOTE]
101-
> **bool** `#include <stdbool.h>`:
102-
> > true or false
102+
103103
## Functions
104104
Functions have a **prototype** which defines parameters and return value.
105105
When you want to create a function you put the prototype at the beginning of the [source file](C_Files.md#source) or in the [header file](C_Files.md#header)

0 commit comments

Comments
 (0)