- Data:-
- Types of Data in C:-
The data type defines the set of values and a set of operations that can be performed on those values. The data is given to the program as input. The data is processed according to the program instructions and output is returned.
In program designing, the data and its types are defined before designing the actual program used to process the data. The values or data used in a program may be of different types. In a C program, each variable is associated with a specific data type.
C language provides standard data types. A standard data type is one of that is predefined in the language.
- For Example:-
- int
- float
- double
- char
