what is the advantage of function pointer
Answer Posted / mahend
Function pointers are very important while implementing
Callback in C, for instance if Software has layered
archiecture, Function pointer are used bye upper layer to
register with below layer on certain conditions (i.e. some
event or interrupt)
| Is This Answer Correct ? | 72 Yes | 7 No |
Post New Answer View All Answers
How can my program discover the complete pathname to the executable from which it was invoked?
What is keyword in c?
What is derived datatype in c?
What is the use of #define preprocessor in c?
What is union and structure in c?
Can we assign string to char pointer?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Explain what is the benefit of using enum to declare a constant?
What does c mean in standard form?
If I have a char * variable pointing to the name of a function ..
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
How can you invoke another program from within a C program?
What is a pointer variable in c language?
Where is c used?
What is quick sort in c?