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 |
How many pointers are required to reverse a link list?
How should runtime errors be handled in c++?
Explain what are the sizes and ranges of the basic c++ data types?
make a middle node of doubly linklist to the top of the list
What does it mean to declare a member variable as static?
How long will it take to learn programming?
Can I make ios apps with c++?
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
What data encapsulation is in c++?
What is do..while loops structure?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
write a program to add two numbers without using an arithmetic operator.