- A char > int > float
- B int > char > float
- C char < int < double
- D double > char > int
- Share this MCQ
Answer:
C
Share this MCQ
char has lesser bytes than int and int has lesser bytes than double in any system
Option C is correct with respect to the size of the datatypes in the C programming language. The char data type typically has a size of 1 byte, the int data type typically has a size of 4 bytes, and the double data type typically has a size of 8 bytes. Therefore, char < int < double in terms of size. However, it's worth noting that the size of these data types can vary depending on the specific implementation and architecture of the system being used.
Click me to Read more Question & Answer of Data Types in C LanguageShare this MCQ