Integer Data Type in C
The Integer data type is used to specify a variable that will contain only integer values, i.e. any positive or negative number without fractional part. The keyword used by C language to specify some variable as integer is int. The width of memory allocated to an integer variable is generally one word. However, the word … Read more