What is late binding c++?


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

Post New Answer

More C++ General Interview Questions

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  


What is std namespace in c++?

0 Answers  


Which one is a preferred language C or C++? Why?

0 Answers  


Explain how a pointer to function can be declared in C++?

0 Answers  


Write a corrected statement in c++ so that the statement will work properly. x + y=z;

2 Answers  






Explain the concept of dynamic allocation of memory?

0 Answers  


What is constructor c++?

0 Answers  


Where and why do I have to put the "template" and "typename" keywords?

0 Answers  


What is difference between n and endl in c++?

0 Answers  


Is sorted c++?

0 Answers  


What is c++ hiding?

0 Answers  


What are activex and ole?

0 Answers  


Categories