what is the diference between pointer to the function and
function to the pointer?
Answers were Sorted based on User's Feedback
I am sorry.
Please explain with small example for this question?
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / selvakumar vedhachalam
There is no difference between poiter to function and
function pointer. It may be two different of saying the
same thing.
Pointer always points to a address.
Function pointer alwyas points to a address of a function.
Example:
void (*fn_ptr)(int, int);
| Is This Answer Correct ? | 2 Yes | 5 No |
what is c language.
How do you determine the length of a string value that was stored in a variable?
Program to find largest of three numbers without using comparsion operator?
what is the difference between %d and %*d in c languaga?
What is c method?
Read two numbers from keyboard and find maximum of them?
What is difference between scanf and gets?
How can I write a function that takes a format string and a variable number of arguments?
Is stack a keyword in c?
What are the advantages of c language?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is the correct code to have following output in c using nested for loop?