C Programming Functions
C Programming Functions
Types of C functions
There are two types of functions in C programming:
Library function
Library function
Library functions are the in-built function in C programming system. For example:
main()
function_name();
...........
...........
}
As mentioned earlier, every C program begins from main() and program starts executing the codes
inside main() function. When the control of program reaches to function_name() inside main() function. The
control of program jumps to void function_name() and executes the codes inside it. When all the codes
inside that user-defined function are executed, control of the program jumps to the statement just
after function_name() from where it is called. Analyze the figure below for understanding the concept of
function in C programming..