C Programming
Function
A function is group of code/statement which is written to perform the specific action. Function has certain functionality to achieve the particular task. In every C program there is at least one function which is main() and exception is this it is called by operating system by default.
Function is useful to divide large program in small module for easy understand and debug.
There are two types of function:-
1. Pre-defined function
2. User defined function