Posts

Showing posts with the label Functions in C programming language

Lecture - 10 : Function in C programming language

Image
Lecture - 10 Function in C programming language  FUNCTION   A function is a self contained block of codes or sub programs with a set of statements that perform some specific task or coherent task when it is called . It is something like to hiring a person to do some specific task like, every six months servicing a bike and hand over to it. Any ‘C’ program contain at least one function i.e main().  There are basically two types of function those are :         1. Library function         2. User defined function Pi The user defined functions defined by the user according to its requirement System defined function can’t be modified, it can only read and can be used. These function are supplied with every C compiler Source of these library function are pre complied and only object code get used by the user by linking to the code by linker Here in system defined function description: Function definition  : predefined, precompiled, s...