Data Types in C with Examples
There are four basic data types in C language. They are given below along with the number of bytes occupied by them in the computer memory. (RAM) Data Type Bytes Occupied in RAM Value Range Value Range in Decimal char 1 byte -27 to 27-1 -128 to 127 int 2 bytes -215 to 215 -1 … Read more