Q:
Which datatype in c language has least storage?
Answer & Explanation
Answer: A) char
Explanation: Data types are used for declaration of variables in computer programming languages. These determine the type and size of data associated with variables.
Data types examples - int, char, float, etc...
char datatype is the least storage data type with 1 byte.
int with 2 or 4 bytes.
float with 4 bytes
double with 8 bytes.
View Answer
Report Error
Discuss