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 size is allocated to the union variable?
To what does “event-driven” refer?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
What is the exit function in c++?
Explain object slicing in c++?
What is function overloading in C++?
Write a C++ Program to Generate Random Numbers between 0 and 100
Write about the various sections of the executable image?
How new/delete differs from malloc()/free?
Explain 'this' pointer and what would happen if a pointer is deleted twice?
By using c++ with an example describe linked list?
What is a forward referencing and when should it be used?