Call by Value and Call by Reference in C

CALL BY VALUE AND CALL BY REFERENCE IN C

We can pass the value in function two ways call by value or call by reference. These two ways are generally differentiated by the type of values passed to them as parameters. In this article, we will see call by value and call by reference.

Call by value and call by reference

 

So let’s start with the call by value.

call by value

In the call by value, values of actual parameters are copied to function’s formal parameters and the two types of parameters are stored in different memory locations. So any changes made inside functions are not reflected in actual parameters of the caller.

I think now you are thinking about what is an actual parameter and formal parameters. So don’t worry I am explaining below about the actual and formal parameters.

Actual parameter: The value/variables which is passed by the caller while calling function. In simple words you can say, the parameters passed to a function.

Formal parameters: The identifier used in a function to stand for the value that is passed into the function by a caller. In simple words, the parameters received by a function.

Let’s see an example code,

#include <stdio.h>

int sum(int a, int b)		//Statement 1
{
    return a+b;
}
int main()
{
    int x=10,y=20;
    int s = sum(x,y);		//Statement 2

    printf("%d\n",s);
    
    return 0;
}

In Statement 1, the variables a and b are called FORMAL PARAMETERS. In Statement 2 the arguments x and y are called ACTUAL PARAMETERS (as they are the actual ones to hold the values)

 

So now comes on the topic, as I explained above that in the call by value any changes made inside functions are not reflected in actual parameters of the caller. The reason behind that a copy of each actual argument is assigned to the corresponding formal arguments. Let’s see an example code to understand this concept.

#include <stdio.h>

void swap(int x, int y)
{
    int c;

    c = x;
    x = y;
    y = c;

    printf("\nValue inside the function\n");
    printf("x = %d , y = %d\n",x,y);
}

int main()
{
    int x=10,y=20;

    printf("Initial value of x and y\n");
    printf("x = %d , y = %d\n",x,y);
    printf("\n>>Calling the swap function\n");

    swap(x,y);

    printf("\nValues after swap function call\n");
    printf("x = %d , y = %d\n",x,y);

    return 0;
}

Output:

call by value in c

 

In the example code, swap() function modifies a copy of the values of x and y. However, the original value of x and y remains the same.

 

Call by reference

In the call by reference, addresses of the actual arguments are copied and then assigned to the corresponding formal arguments. So in the call by reference both actual and formal parameters are pointing the same memory location. Therefore, any changes made to the formal parameters will get reflected in the actual parameters.

We should remember two things before using the call by reference:

  1. We must pass the addresses of the actual arguments instead of passing values to the function.
  2. We must declare the formal arguments of the function as pointer variables of an appropriate type.

 

Note: Here I only explain call by reference in terms of C programming. In C++ we can use reference and pointer both for a call by reference.

 

Let’s see a C program to understand the call by reference,

#include <stdio.h>

void swap(int *x, int *y)
{
    int c;

    c = (*x);
    (*x) = (*y);
    (*y) = c;

    printf("\nValue inside the function\n");
    printf("x = %d , y = %d\n",*x,*y);
}

int main()
{
    int x=10,y=20;

    printf("Initial value of x and y\n");
    printf("x = %d , y = %d\n",x,y);
    printf("\n>>Calling the swap function\n");

    swap(&x,&y);

    printf("\nValues after swap function call\n");
    printf("x = %d , y = %d\n",x,y);

    return 0;
}

Output:

Call by reference in c

 

Explanation:

Here we are passing addresses of integer variables to a function. So the formal arguments must be declared as a pointer to int or (int *). Here formal and actual parameters point to the same memory location. So what we will change in formal parameters will reflect actual parameters.

c = (*x)  =>> Means that first dereference the value at x then assigned to c (integer variable).

(*x) = (*y)  =>> Means that first dereference the value at y then assigned to the address pointed by x.

(*y) = c =>> Means the value of c assigned to the address pointed by y

When the function swap() ends and control passes back to main() then still x and y contain the value which assigned in swap function. See the above-mentioned image.

 

When to use call by value and When to use call by reference?

It depends on requirements and scenarios to when to use call by value and call by reference. Below I am mentioning a few scenarios which explain when to use call by value and when to use call by reference.

When to use call by value:

  • When you don’t want to change the value of the actual parameters.
  • To avoid any side effects.
  • Just only want the value of actual parameters.
  • Only want to check any condition.
  • You don’t have memory concerns. Because in the call by value you also need extra memory for formal parameters.

When to use call by reference:

  • When want to change the value of actual parameters.
  • When you have memory concerns then use call by reference. It does not create duplicate memory.
  • When you need to pass the structure, union, or big size of data. Because in which we are using the pointer so it helps to reduce the stack usage.
  • If you don’t want to change the value of structure and union or any data then you can use const with pointers.

 

Recommended Posts for you

2 comments

Leave a Reply

Your email address will not be published. Required fields are marked *