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 |
What is different in C++, compare with unix?
What are the two types of polymorphism?
Explain working of printf?
How can I disable the "echo" feature?
What is enum class in c++?
Is java based off c++?
What is time_t c++?
What is class definition in c++ ?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
What are keywords in c++?
How to declare a pointer to an array of integers?
How the delete operator differs from the delete[]operator?