Explain various data types supported by C
Programming language giving suitable examples.
Answers
Answer:
Data types in C = basic, derived, enumeration,void
Most of the time, for small programs, we use the basic fundamental data types in C – int, char, float, and double.
Most of the time, for small programs, we use the basic fundamental data types in C – int, char, float, and double....
Most of the time, for small programs, we use the basic fundamental data types in C – int, char, float, and double....int Data Type.
Most of the time, for small programs, we use the basic fundamental data types in C – int, char, float, and double....int Data Type.Data type Range
Most of the time, for small programs, we use the basic fundamental data types in C – int, char, float, and double....int Data Type.Data type Rangesigned short int -2,147,483,648 to 2,147,483,647 (4 bytes)
Most of the time, for small programs, we use the basic fundamental data types in C – int, char, float, and double....int Data Type.Data type Rangesigned short int -2,147,483,648 to 2,147,483,647 (4 bytes)unsigned short int 0 to 4,294,967,295 (4 bytes)
Most of the time, for small programs, we use the basic fundamental data types in C – int, char, float, and double....int Data Type.Data type Rangesigned short int -2,147,483,648 to 2,147,483,647 (4 bytes)unsigned short int 0 to 4,294,967,295 (4 bytes)long int
Most of the time, for small programs, we use the basic fundamental data types in C – int, char, float, and double....int Data Type.Data type Rangesigned short int -2,147,483,648 to 2,147,483,647 (4 bytes)unsigned short int 0 to 4,294,967,295 (4 bytes)long int signed long int -2,147,483,648 to 2,147,483,647 (4 bytes)