PPT Slide
Consists of the following:
1) Integers of different sizes
Type Size(bytes) Type Size
The above can be preceded by the key words signed or unsigned to specify signed or
unsigned integers, e.g.., signed char (defines integer from -127 to 128)
unsigned long (defines integers from 0 to (2^64-1)
2) Floating point numbers
The integer and floating point types can be preceded by the key word const to specify
constants, e.g., const int Max=10; // constants must be initialized when declared.