Please enable JavaScript.
Coggle requires JavaScript to display documents.
Tokens of C Programming, Keywords, Definition - Coggle Diagram
Tokens of C Programming
Operators
Classification
Logical Operators &&,||,!
Assignment Operators =,+=,-=,*=
Relative Operators ==,!=,<,>
Increment and Decrement Operators ++,--
Arithmetic Operators +,-,*,/,% :
Bitwise Operators &.^,<<,>>
Definition
Operators are symbols that tell the compiler to perform specific mathematical, relational, or logical operations on values.
Special Symbols
Definition
Special symbols are characters that have specific meanings and functions beyond representing letters or numbers. They are used to structure code, define Operations, and control the program's flow
Classification
Escape Sequences \n, \t, \, \"
-
-
-
Pre-processor '#' for #include, #define
Constants
-
Ways to define
-
Using const keyword
-
-
Can be pointers, strings etc
-
Identifiers
Definition
An identifier is a name used to uniquely identify a variable, function, class or other programming element
-
-
-
-
Keywords
-
-
Definition
A set of predefined words used by the compiler which cannot be used as variables or identifiers. there are 32 such words
-