What do you mean by “this” pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between while and do while loop? Explain with examples.
How are the features of c++ different from c?
Explain the benefits of proper inheritance.
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?
Distinguish between a # include and #define.
what are prototypes
what is the use of void main() in C++ language?
give me an example for testing a program showing the test path .show how the test is important and complex.
how many trys can we write in one class
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
write a programme to get a character and thier ASCII value
Can union be self referenced?