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
I heard that you have to include stdio.h before calling printf. Why?
What is a ternary operator in c?
What is void c?
write a program to generate address labels using structures?
the question is that what you have been doing all these periods (one year gap)
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Why c language is called c?
What is pointers in c with example?
Where register variables are stored in c?
Is return a keyword in c?
Is c dynamically typed?
Explain is it better to bitshift a value than to multiply by 2?
Explain threaded binary trees?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Write a simple code fragment that will check if a number is positive or negative.