Vidyalelo
C++ Programming · Q102

Standard Template Library (STL) in C++

Programming · C++ Programming · question 102

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
Answer
B.
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