Home » Call by value and call by reference in C++

Call by value and call by reference in C++

by Online Tutorials Library

Call by value and call by reference in C++

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 modified in call by value but it is modified in call by reference.

CPP Call by value and call by reference in cpp 1

Let’s understand call by value and call by reference in C++ language one by one.


Call by value in C++

In call by value, original value is not modified.

In call by value, value being passed to the function is locally stored by the function parameter in stack memory location. If you change the value of function parameter, it is changed for the current function only. It will not change the value of variable inside the caller method such as main().

Let’s try to understand the concept of call by value in C++ language by the example given below:

Output:

Value of the data is: 3 

Call by reference in C++

In call by reference, original value is modified because we pass reference (address).

Here, address of the value is passed in the function, so actual and formal arguments share the same address space. Hence, value changed inside the function, is reflected inside as well as outside the function.

Note: To understand the call by reference, you must have the basic knowledge of pointers.

Let’s try to understand the concept of call by reference in C++ language by the example given below:

Output:

Value of x is: 100 Value of y is: 500    

Difference between call by value and call by reference in C++

No. Call by value Call by reference
1 A copy of value is passed to the function An address of value is passed to the function
2 Changes made inside the function is not reflected on other functions Changes made inside the function is reflected outside the function also
3 Actual and formal arguments will be created in different memory location Actual and formal arguments will be created in same memory location
Next TopicC++ Recursion

You may also like