Tell me what are static member functions?
No Answer is Posted For this Question
Be the First to Post Answer
How const int *ourpointer differs from int const *ourpointer?
What is a multimap c++?
What is struct c++?
What is an adaptor class or wrapper class in c++?
What is the difference between ++ count and count ++?
What information can an exception contain?
What are files in c++?
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?
What is the difference between public, private, protected inheritance?
What are the three forms of cin.get() and what are their differences?
What is ios :: in in c++?
what is scupper?