Primary Data types
Primary Data types
Data type Keyword Formal Specifier Size Data Range
Data type Keyword Formal Specifier Size Data Range
- Character char %c 1 bytes -128 to 127
- Unsigned Character unsigned char <-- --> 8 bytes 0 to 255
- Integer int %d 2 bytes -32768 to 32767
- Long integer long int %ld 4 bytes -231 to 231
- unsigned integer unsigned int %u 2 bytes 0 to 65535
- Float float %f 4 bytes -3.4e38 to 3.4e38
- Double Double %lf 8 bytes -1.7e38 to 1.7e38
- Long double long double %Lf 12-16 bytes -3.4e38 to 3.4e38
- Void void Null Null Null
Comments
Post a Comment