Introduction
Pointer to a function is a way to store the memory address of a function just like a variable stores the memory address of a value. When a function is called through a pointer, it is called pointer to a function.
In this lab, we will write a C program to demonstrate how to use a pointer to a function.