Home » C Programming » Data Types » Question
  1. Which is correct with respect to the size of the data types?
    1. double > char > int
    2. char > int > float
    3. int < char > float
    4. char < int < double
    5. None of these
Correct Option: D

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



Your comments will be displayed only after manual approval.