Answer Posted / gajendra
Function Pointers are pointers, i.e. variables, which point to the address of a function. You must keep in mind,
that a running program gets a certain space in the main-memory. Both, the executable compiled program code
and the used variables, are put inside this memory.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Do you know pointer in c?
Can a program have two main functions?
Explain argument and its types.
What are the loops in c?
Tell me when would you use a pointer to a function?
What is the maximum no. of arguments that can be given in a command line in C.?
Between macros and functions,which is better to use and why?
What are the advantages and disadvantages of c language?
Explain how can you be sure that a program follows the ansi c standard?
What is strcmp in c?
Why clrscr is used in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is a file descriptor in c?
What is an example of structure?