Types Of Function
CATEGORY OF FUNCTION 1.Library function 2.Userdefined function LIBRARY FUNCTION It is also called predefined function or built-in or system define or fundamental or intrinsic function.This type of function is predefined by the system we cannot modify in this type of function.It has limited task.A user can only used the function but cannot change them.It means than user cannot understand the internal working of these function. For example: printf(),scanf(),clrscr(),getch() etc. NOTE: Whenever we use libray function in our program then the related header file must be included. USER-DEFINED FUNCTION The functions which are designed according to the requirement user are called User-defined function .The user can modify this type of function there task is not lim...