Call by value and Call by Reference
In case of callByValue value will not change after calling a function but in case of callByReference value will change after calling a function .
CallByValue just changes the value of the local variable. Local variables are the variables declared inside the block of function. So when we change the value inside a function there is a reflection but in the main function, it's not.
Whereas, CallByReference changes the value at the memory address. So when we change the value inside the function value gets directly changed at the address of that variable. That's why you see the reflection .
Call By Value
#include <stdio.h> void change(int a); void main() { int a = 5; printf("Value of a before calling Function = %d",a ); // 5 change(a); /* Call by Value */ printf("\nValue of a after calling Function = %d",a ); // 5 } void change (int a) { printf("\nValue of a before changing value of a = %d",a ); // 5 a = 6; /* Lets change the value of a*/ printf("\nValue of a after changing value of a = %d",a ); // 6 }
Output
Value of a before calling Function = 5 Value of a before changing value of a = 5 Value of a after changing value of a = 6 Value of a after calling Function = 5
Here as you see we changed the value of 'a' inside Change function as 6. But it's not reflected inside main Function.
Call By Reference
Example of Call by Reference :-
#include <stdio.h> void change(int *a); void main() { int a = 5; printf("Value of a before calling Function = %d",a ); // 5 change(&a); /* Call by Reference */ printf("\nValue of a after calling Function = %d",a ); // 6 } void change (int *a ) { printf("\nValue of a before changing value of a = %d",*a ); // 5 *a = 6; /* Lets change the value of a*/ printf("\nValue of a after changing value of a = %d",*a ); // 6 }
Output
Value of a before calling Function = 5 Value of a before changing value of a = 5 Value of a after changing value of a = 6 Value of a after calling Function = 6
Here as you see we changed the value of 'a' inside Change function as 6. Yes it is reflected inside main Function.
Why so?
In case of callByValue value is not changed after calling a function but in case of callByReference value is changed after calling a function .
CallByValue just changes the value of the local variable. Local variables are the variables declared inside the block of function. So when we changed the value of 'a' inside a function there is a reflection but in the main function, it's not.
Whereas, CallByReference changes the value at the memory address. So when we change the value of 'a' inside the function value gets directly changed at the address of that variable. That's why you see the reflection.
Solve the Quiz of Article
codzify.com
Largest collection of up-to-date tutorials to learn programming languages. We are focused on easy learning. Massive collection of interview questions one may need for preparation.
Tutorials Library
C, C++, Java, Python Data Structures, Swift, Objective C, Swift iOS, iOS Objective C, Socket.Io, Android, Extras by Codzify.