what is the advantage of function pointer
Answer Posted / prakash
Function pointers are very useful to send the function as a
parameter to the another function.so,execution time will be
saved.code complexity will be redused
Is This Answer Correct ? | 42 Yes | 7 No |
Post New Answer View All Answers
How can I call fortran?
What are the valid places to have keyword “break”?
What is the difference between functions getch() and getche()?
What is malloc calloc and realloc in c?
Explain what is dynamic data structure?
Write a c program to demonstrate character and string constants?
What are qualifiers?
What is function definition in c?
What are the disadvantages of external storage class?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is the use of typedef in structure in c?
What are actual arguments?
What is use of #include in c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the use of pragma in embedded c?