Differentiate between late binding and early binding. What are the advantages of early binding?


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

Post New Answer

More C++ General Interview Questions

What do you mean by delegate? Can a user retain delegates?

0 Answers  


Describe functional overloading?

6 Answers   HP,


this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }

1 Answers  


What are pointer-to-members? Explain.

0 Answers   iNautix,


Define a way other than using the keyword inline to make a function inline?

1 Answers  






What is the use of ‘using’ declaration?

1 Answers  


What do you mean by translation unit?

0 Answers  


What is decltype c++?

0 Answers  


How to reduce a final size of executable?

3 Answers  


When do you call copy constructors?

0 Answers  


Why do we need function?

0 Answers  


Describe protected access specifiers?

0 Answers  


Categories