Define the Int Data Type of C Language?
The int is used to define integer numbers. The Integers are whole numbers with a range of values supported by a particular machine and the size of integer value is limited to the range -32768 to 32767. A signed integer uses 15 bits for the magnitude of the number and one bit for sign.
Eg: {
int Count;
Count = 5;
}