Data type in C, Built-in and derived data type with examples
Data Type For example, int, char, float, etc. are the data types. Example: int data; data = 20; In the above example, we have declared a variable name “data”. Its data type is int, means that we can assign only integer value to this variable “data” not character value. Classification of C data types Type … Read more