Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?
Answer / neelam saini
C++ allows for dynamic initialization of global variables before main() is invoked. It is possible that initialization of global will invoke some function. If this function crashes the crash will occur before main() is entered.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are vectors used for in c++?
What is abstraction c++?
Can you Mention some Application of C/C++?
What do manipulators do?
What is an Iterator class?
What are c++ redistributables?
What is a singleton class c++?
let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.
What is a class template in c++?
How would you call C functions from C++ and vice versa?
Explain how we implement exception handling in c++?
How many static variables are created if you put one static member into a template class definition?