Answer Posted / preeti singh
A function pointer is a type of pointer that points to a
function, for e.g. a pointer to the function :
int fun(int a,int b)
can be declared as :
int(*myptr)(int a,int b);
here myptr is a type of pointer which can point to any
function which takes two integer arguments and returns int.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Explain what happens if you free a pointer twice?
How important is structure in life?
Explain how can you restore a redirected standard stream?
Explain what is the difference between #include and #include 'file' ?
Do string constants represent numerical values?
How do I copy files?
What is the mean of function?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
how do you execute a c program in unix.
What is else if ladder?
What the different types of arrays in c?
What is an lvalue in c?
What are the c keywords?
What is c system32 taskhostw exe?
What is sizeof array?