Q102
What will be the output of the following C++ code? #include using namespace std; int main() char* ptr; unsigned long int a = (size_t(0) / 3); cout << a << endl; try ptr = new char[size_t(0) / 3]; delete[ ] ptr; catch(bad_alloc &thebadallocation) cout << thebadallocation.what() << endl; ; return 0;
A.
0
AnswerB.
2
C.
bad_alloc
D.
depends on compiler
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board