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

main() { int i=400,j=300; printf("%d..%d"); }

13 Answers   ME,


WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****

2 Answers  


Is it fine to write void main () or main () in c?

0 Answers  


char ch=10;printf("%d",ch);what is the output

14 Answers   Accenture,


With the help of using classes, write a program to add two numbers.

0 Answers   TCS,


what is c programing

11 Answers   Wipro,


what is memory leak?

3 Answers  


wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }

2 Answers  


Can you subtract pointers from each other? Why would you?

0 Answers  


What is file in c preprocessor?

0 Answers  


6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1

4 Answers  


Program to write some contents into a file using file operations with proper error messages.

2 Answers  


Categories