Report Bug
Qus : Which is correct with respect to the size of the data types?
Qus डेटा प्रकारों के आकार के संबंध में कौन सा सही है?

A. char > int > float
B. int > char > float
C. char < int < double
D. double > char > int


Solution
C. char < int < double



Explanation
char has less bytes than int and int has less bytes than double in any system



Report Bug