What Are The Function Pointer In C?
Function pointer in C is a variable which holds the address of a function. The function pointers point to executable code inside a program, unlike regular pointers in C, which point to data. The function pointers are used to get the address of the function. Let us consider an example. Â Â Â Â Â …