What are the debugging methods you use when came across a problem?
Answer / nakul kumar
Debugging with tools like :
GDB, DBG, Forte, Visual Studio.
Analyzing the Core dump.
Using tusc to trace the last system call before crash.
Putting Debug statements in the program source code.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between *p++ and (*p)++ ?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
What are default parameters? How are they evaluated in c++ function?
What is the use of register keyword with the variables?
What is the need of a destructor? Explain with the help of an example.
How the delete operator differs from the delete[]operator?
What is the use of c++ programming language in real life?
What is #include ctype h in c++?
What are the vectors in c++?
How to create a reference variable in C++
Differentiate between an array and a list?
What are all predefined data types in c++?