top of page

Frequently Asked C Language Interview Question & Answers

Define function pointer?

The function pointer is the pointer which accesses the address of a function. The running program occupies some memory space. Both the executable compiled program code and as well as user variables work on function pointers.
In the C, each function has an address in a code segment.

Close
bottom of page