what is the advantage of function pointer
Answer Posted / sanjeeva rao
It is useful when you want to send function as argument to
another function. And to implement the call back functions in multi-threading programming.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
When c language was developed?
What is "Duff's Device"?
When should the register modifier be used? Does it really help?
What is the difference between ++a and a++?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
How can you avoid including a header more than once?
What do you mean by keywords in c?
What is the difference between union and structure in c?
Is it possible to execute code even after the program exits the main() function?
how we can make 3d venturing graphics on outer interface
What is dangling pointer in c?
What does volatile do?
Write a program to check palindrome number in c programming?
What are the types of data files?
What is an auto variable in c?