web analytics

What are user defined functions? What are the advantages of user defined function.

User defined functions

Functions are blocks of codes to perform specific tasks and return the result. However it is not mandatory for a function return anything and also a function is not limited to performing one task only. User defined functions are basic building blocks of a program and can be found in the basic structure of C program.

Functions can be classified into two categories, namely, library functions and user-defined functions. The functions which are developed by user at the time of writing a program are called user defined functions. Thus, user defined functions are functions developed by user.

What are user defined functions? What are the advantages of user defined function.

Example: 

Here addNumbers() is an user defined function.

//declaring an user defined function which has been defined later
float addNumbers(float a, float b);

int main(){
float result;

/* calling user defined function from the main function */
result = addNumbers(.5, .8);

return 0;
}

//defining an user defined function which has been declared earlier.
float addNumbers(float a, float b){
return (a+b);
}

 Read More: What are the elements of user defined functions?

Advantages of User Defined Functions

When not using user defined functions, for a large program the tasks of debugging, compiling etc may become difficult in general. That’s why user defined functions are extremely necessary for complex programs. The necessities or advantages are as follows,

  1. It facilitates top-down modular programming. In this programming style, the high level logic of the overall problem is solved first while the details of each lower-level function are addressed later.
  2. The length of a source program can be reduced by using functions at appropriate places.
  3. It is easy to locate and isolate a faulty function for further investigations.
  4. A function may be used by many other programs. This means that a programmer can build on what others have already done, instead of starting all over again from scratch.
Please follow and like us:
Pin Share
RSS
Follow by Email
Scroll to Top