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
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board