Function Arguments: Actual Arguments Formal Arguments
Function Arguments: Actual Arguments Formal Arguments
Actual arguments
Formal arguments
1. Actual Parameters:
The arguments that are passed in a function call are called actual arguments.
These arguments are defined in the calling function. These are the variables or
expressions referenced in the parameter list of a subprogram call. There is no need
to specify datatype in actual parameter.
2. Formal Parameters:
These are the variables or expressions referenced in the parameter list of a
subprogram specification. The datatype of the receiving value must be defined. The
scope of formal arguments is local to the function definition in which they are used.
These are the variables or expressions These are the variables or expressions
referenced in the parameter list of a referenced in the parameter list of a
subprogram call. subprogram specification.
Actual Parameters are the parameters Formal Parameters are the parameters
which are in calling subprogram. which are in called subprogram.
The parameters are written in function The parameters are written in function
call are known as actual parameters. definition are known as formal
parameters.
On the basis of arguments there are two types of function are available in C language,
they are;
With argument
Without argument
If a function take any arguments, it must declare variables that accept the values
as a arguments. These variables are called the formal parameters of the function.
There are two ways to pass value or data to function in C language which is given
below;
call by value
call by reference
Call by value
void main()
{
int a=100, b=200;
clrscr();
swap(a, b); // passing value to function
printf("\nValue of a: %d",a);
printf("\nValue of b: %d",b);
getch();
}
Output:
Value of a: 200
Value of b: 100
Call by reference
This method copy original value into This method copy address of arguments
function as a arguments. into function as a arguments.
Changes made to the parameter inside Changes made to the parameter affect
the function have no effect on the the argument. Because address is used
argument. to access the actual argument.
Actual and formal arguments will be Actual and formal arguments will be
created in different memory location created in same memory location
Local Variables
Variables that are declared inside a function or block are called local variables. They
can be used only by statements that are inside that function or block of code. Local
variables are not known to functions outside their own. The following example shows
how local variables are used. Here all the variables a, b, and c are local to main()
function.
#include <stdio.h>
int main () {
/* actual initialization */
a = 10;
b = 20;
c = a + b;
return 0;
}
Global Variables
Global variables are defined outside a function, usually on top of the program. Global
variables hold their values throughout the lifetime of your program and they can be
accessed inside any of the functions defined for the program.
A global variable can be accessed by any function. That is, a global variable is
available for use throughout your entire program after its declaration. The following
program show how global variables are used in a program.
#include <stdio.h>
int main () {
/* actual initialization */
a = 10;
b = 20;
g = a + b;
return 0;
}
A program can have same name for local and global variables but the value of local
variable inside a function will take preference. Here is an example −
Live Demo
#include <stdio.h>
int main () {
return 0;
}
When the above code is compiled and executed, it produces the following result −
value of g = 10
Formal Parameters
Formal parameters, are treated as local variables with-in a function and they take
precedence over global variables. Following is an example −
#include <stdio.h>
int main () {
return a + b;
}
When the above code is compiled and executed, it produces the following result −
value of a in main() = 10
value of a in sum() = 10
value of b in sum() = 20
value of c in main() = 30
When a local variable is defined, it is not initialized by the system, you must initialize
it yourself. Global variables are initialized automatically by the system when you
define them as follows −
int 0
char '\0'
float 0
double 0
pointer NULL