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 |
Why do we use setw in c++?
Why do we use classes in c++?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
What are friend functions in C++?
What are 2 ways of exporting a function from a dll?
Why are pointers used?
If you hear the cpu fan is running and the monitor power is still on, but you did not see anything show up in the monitor screen. What would you do to find out what is going wrong?
What is scope in c++ with example?
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
Explain the difference between new() and malloc() in c++?
What is polymorphism in c++? Explain with an example?
Explain queue. How it can be implemented?