Home » C++ Programming » Data Types » Question
  1. Identify the incorrect option.
    1. sizeof(char) <= sizeof(long) <=sizeof(wchar_t)
    2. 1 <= sizeof(bool) <= sizeof(long)
    3. sizeof(N) = sizeof(signed N) = sizeof(unsigned N)
    4. sizeof(float) <= sizeof(double) <= sizeof(long double)
    5. None of these
Correct Option: C

sizeof(char) <= sizeof(wchar_t) <= sizeof(long).



Your comments will be displayed only after manual approval.