You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: LearningC/C_Language_Shorts/C_syntax.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,6 +90,16 @@ banaba bigNum = 1329:
90
90
### Other/Any
91
91
void: no variable/value
92
92
93
+
## Operators
94
+
95
+
\+\-\* / % ^ \
96
+
& | ^ ~
97
+
\++ \--
98
+
99
+
### Numbers:
100
+
> [!NOTE]
101
+
> **bool**`#include <stdbool.h>`:
102
+
> > true or false
93
103
## Functions
94
104
Functions have a **prototype** which defines parameters and return value.
95
105
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)
@@ -116,6 +126,11 @@ When you want to create a function you put the prototype at the beginning of the
116
126
> ```
117
127
>
118
128
129
+
> [!TIP]
130
+
> **main** from the _main program_ is the **main function** \
0 commit comments