Pointer to a function in C

Function pointer is used to store the address of a function, we can call the function later through this function pointer. This is a useful process because for any particular work like drawing a line we have to write a huge code. Instead of that we can call a function through function pointer. Syntax: Example: […]

Pointer to a function in C Read More »