Name the debugging methods that are used to solve problems?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is pointer with example?

0 Answers  


What is scope of a variable? (LOLZ)

2 Answers   CA, TCS,


write a program to add two numbers without using an arithmetic operator.

1 Answers   NIIT,


Discuss the possibilities related to the termination of a program before entering the mainq method?

0 Answers  


How can I disable the "echo" feature?

0 Answers  






Is c++ a float?

0 Answers  


Which bitwise operator is used to check whether a particular bit is on or off?

0 Answers  


1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 Answers  


How a modifier is similar to mutator?

0 Answers  


Describe run-time type identification?

1 Answers  


To which numbering system can the binary number 1101100100111100 be easily converted to?

0 Answers  


What are exceptions c++?

0 Answers  


Categories