DATA TYPE : 1. Data type is used to specify what type of value to be stored in a variable. 2. C language supports different types of data types. 3. The size and range of these data types may vary based on processor type and compiler. INTEGER DATA TYPES: Integer data types are used to represent value without decimal point. We can represent signed values and unsigned values. In integer category we have int, short int, long int as data types. The size and range of integer data types described in below table. TYPE SIZE ...
Here you find computer concepts