Vidyalelo
C++ Programming · Q976

C++ miscellaneous

Programming · C++ Programming · question 976

Q976

What will be the output of the following C++ code? #include using namespace std; int main() char* ptr; unsigned long int Test = sizeof(size_t(0) / 3); cout << Test << endl; try ptr = new char[size_t(0) / 3]; delete[ ] ptr; catch (bad_alloc &thebadallocation) cout << thebadallocation.what() << endl; ; return 0;

A.
4
B.
2
C.
bad_alloc
D.
depends on compiler
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board