Identify the incorrect option.
A. 1 <= sizeof(bool) <= sizeof(long)
B. sizeof(float) <= sizeof(double) <= sizeof(long double)
C. sizeof(char) <= sizeof(long) <=sizeof(wchar_t)
D. sizeof(N) = sizeof(signed N) = sizeof(unsigned N)
Answer: Option C
Related Questions on Variables and Data Types in C plus plus
Which of the following is a valid variable name in C++?
A. myVariable
B. 123variable
C. variable&
D. float
What is the data type of the variable 'x' in the following declaration: double x = 3.14;?
A. int
B. double
C. float
D. char

Join The Discussion