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

The char has less bytes than int and int has less bytes than double whereas int and float can potentially have same sizes.



Your comments will be displayed only after manual approval.