Definitions
Basics of C programming
Comments
Comments in C start with // and go to the end of a line. Multiline comments begin with /* and end with */ .
Separators
Expressions in C are separated by semicolons (;). This tends to appear at the ends of lines.
Booleans
Ignoring the bool type, zero is false, and non-zero is true.
Last updated