C Functions
Storage Classes
Storage classes are used to define scope and life time of a variable. There are four storage classes in C programming. auto extern static register…
Recursion in C
When function is called within the same function, it is known as recursion in C. The function which calls the same function, is known as…
Call value and Reference
There are two ways to pass value or data to function in C language: call by value and call by reference. Original value is not…
What is function
The function in C language is also known as procedure or subroutine in other programming languages. To perform any task, we can create function. A…