What is dynamic dispatch in c++?


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

Post New Answer

More C Interview Questions

#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }

3 Answers   IBM,


Are the expressions * ptr ++ and ++ * ptr same?

0 Answers  


main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail

6 Answers   TCS,


What is the concatenation operator?

0 Answers  


Explain what are header files and explain what are its uses in c programming?

0 Answers  






main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?

7 Answers   AMCAT, HCL, Ramco, Zycus Infotech,


What is 'bus error'?

0 Answers  


Can you tell me how to check whether a linked list is circular?

1 Answers  


What is meant by int fun const(int a, int b) { .... ... }

1 Answers  


What is the method to save data in stack data structure type?

0 Answers  


exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above

0 Answers  


difference between object file and executable file

0 Answers  


Categories