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 the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
What is a custom exception?
program to print this triangle * * * * * *
Explain "passing by value", "passing by pointer" and "passing by reference" ?
what are the iterator and generic algorithms.
Can member data be public?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
When copy constructor can be used?
What is difference between class and structure in c++?
What is an inclusion guard?
Explain Memory Allocation in C/C++ ?
What is the Difference between "C structure" and "C++ structure"?