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
Differentiate between null and void pointers.
using for loop sum 2 number of any 4 digit number in c language
What is the difference between null pointer and wild pointer?
Explain modulus operator. What are the restrictions of a modulus operator?
What are the different types of constants?
what is the format specifier for printing a pointer value?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is break in c?
Do string constants represent numerical values?
Difference between linking and loading?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is a good way to implement complex numbers in c?
What is difference between && and & in c?
Is there a way to jump out of a function or functions?
How do you define a string?