What are the techniques you use for debugging?



What are the techniques you use for debugging?..

Answer / chaitanya raj budumuru

By pressing F8 key then there's a window appears and there
we have to write all the variables that we had used so far
in the programme and press enter then the initial values of
those variables taken as garbage if the variable not
assigned any value or the assigned value will be displayed
at bottom of the code seperated by a line.
By pressing F8 Key continuesly debugging will be
happened and somme times output screen also will appear and
the values of variables also changed according to the logic.
This is the debugging process in c++ as well as c also.

Is This Answer Correct ?    5 Yes 5 No

Post New Answer

More C++ General Interview Questions

What is c++ best used for?

0 Answers  


What is object in c++ wikipedia?

0 Answers  


what is a reference variable in C++?

0 Answers  


template<class T, class X> class Obj { T my_t; X my_x; public: Obj(T t, X x) : my_t(t), my_x(x) { } }; Referring to the sample code above, which one of the following is a valid conversion operator for the type T? a) T operator T () { return my_t; } b) T operator(T) const { return my_t; } c) operator(T) { return my_t; } d) T operator T (const Obj &obj) { return obj.my_t; } e) operator T () const { return my_t; }

1 Answers   Quark,


What is null pointer and void pointer?

0 Answers  






implement stack using stack.h headerfile functions

1 Answers   Exilant, GMG, Subex, University,


How many pointers are required to reverse a link list?

5 Answers   CTS,


Write a program which employs Recursion

0 Answers  


What is buffering in c++?

0 Answers  


What is flush () in c++?

0 Answers  


Give 10 points of differences between C & C++.

0 Answers   HCL,


True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends

0 Answers  


Categories