What are the techniques you use for debugging?
Answer Posted / 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 View All Answers
Write about the various sections of the executable image?
What is meant by entry controlled loop? What all C++ loops are exit controlled?
What is the difference between a type-specific template friend class and a general template friend class?
Do you know the problem with overriding functions?
How much is c++ certification?
What is double in c++?
Which is most difficult programming language?
What is the difference between passing by reference and passing a reference?
What is an accessor in c++?
What is the maximum combined length of command line arguments including the space between adjacent arguments?
Why is it called c++?
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
Explain the operation of overloading of an assignment operator.
Why should you learn c++?
What is do..while loops structure?