Integer Data Types

Integer data types are further classified as: Signed and Unsigned.
In both the signed and unsigned we have the short int and long int.
int (signed integer) unsigned int(unsigned integer)
short int(Plain) unsigned short in(Plain)
long int(Plain) unsigned long int(Plain)
Thus, C has three classes of integer storage: short int, int and long int in both the signed and unsigned forms.

No comments:

Post a Comment