Name the debugging methods that are used to solve problems?
No Answer is Posted For this Question
Be the First to Post Answer
What is pointer with example?
What is scope of a variable? (LOLZ)
write a program to add two numbers without using an arithmetic operator.
Discuss the possibilities related to the termination of a program before entering the mainq method?
How can I disable the "echo" feature?
Is c++ a float?
Which bitwise operator is used to check whether a particular bit is on or off?
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?
How a modifier is similar to mutator?
Describe run-time type identification?
To which numbering system can the binary number 1101100100111100 be easily converted to?
What are exceptions c++?