Discuss the importance of function declaration in a program.
Answer:
Function declaration tells or informs the compiler about the function which include;
-Return type of the function
-Name of the function
-Total parameters of the function
-Return types of parameters in the function.
Declaration creates a template that the compiler uses during the function call and function definition.