91-9990449935 0120-4256464 |
functions in CThe function in C language is also known as procedure or subroutine in other programming languages. To perform any task, we can create function. A function can be called many times. It provides modularity and code reusability. Advantage of functions in CThere are many advantages of functions. 1) Code ReusabilityBy creating functions in C, you can call it many times. So we don't need to write the same code again and again. 2) Code optimizationIt makes the code optimized, we don't need to write much code. Suppose, you have to check 3 numbers (781, 883 and 531) whether it is prime number or not. Without using function, you need to write the prime number logic 3 times. So, there is repetition of code. But if you use functions, you need to write the logic only once and you can reuse it several times. Syntax to declare function in CThe syntax of creating function in c language is given below: Syntax to call function in CThe syntax of calling function in c language is given below: 1) variable: The variable is not mandatory. If function return type is void, you must not provide the variable because void functions doesn't return any value. 2) function_name: The function_name is name of the function to be called. 3) arguments: You need to provide same number of arguments as defined in the function at the time of declaration or definition. Example of function in CLet's see the simple program of function in c language. Output8 27
Next TopicCall by value and call by reference in C
|