In C++, a size of long double is at least _______ bytes.
- 8
- 10
- 12
- 16
In C++, the size of long double is compiler-dependent. However, according to the C++ standard, it is at least 8 bytes or the size of a double, whichever is greater. Some compilers may allocate more.
Loading...
Related Quiz
- Can a friend function be a member function of another class?
- Which access specifier allows a class member to be accessible only within its own class and friends?
- Which of the following scenarios is most suitable for using a struct instead of a class?
- Unlike if-else, switch-case in C++ does not support _______ type for case values.
- Which of the following scenarios is most suitable for using a switch-case statement?