There are 2 things we have to discuss Actual Parameter and the Formal Parameter to fully understand the Swapping of Two Numbers in C++ Using Functions. Swapping of two numbers in this article I am going to explain Call By Value, Call by Reference, Actual Parameter and Formal Parameter. So all the doubts will be clear to understand this problem.
Check This: C++ Program to Calculate Standard Deviation Using Function
Check This: C++ Program to Calculate Standard Deviation Using Function
Swapping of Two Numbers in C++ Using Functions | Call by Reference
#include<iostream>
using namespace std;
void swap(int *x ,int *y );
/*Swapping of Two Numbers in C++ Using Functions Call by Reference*/
int main()
{
//Program by- Ghanendra Yadav
int a,b;
cout<<"Enter Two Numbers To Swap: ";
cin>>a>>b;
swap(&a,&b);
cout<<"\nAfter Swapping Two Numbers: ";
cout<<a<<" "<<b<<" \n";
return 0;
}
void swap(int *x,int *y)
{
int z;
z=*x;
/*Copying the first variable Address to the tempriory variable*/
*x=*y;
/*Copying the second variable Address to the first variable*/
*y=z;
/*Copying the tempriory variable Address to the second variable*/
}
Swapping of Two Numbers in C++ Using Call by Value Functions
#include<iostream>
using namespace std;
void swap(int ,int );
/*Swapping of Two Numbers in C++ Using Functions Call by Value*/
int main()
{
//Program by- Ghanendra Yadav
int a,b;
cout<<"Enter the Two Numbers to Swap in C++: ";
cin>>a>>b;
cout<<"\nAfter Swapping of Two Numbers:";
swap(a,b);
return 0;
}
void swap(int x,int y)
{
int z;
/*Extra veriable for storing the value of first or second variable*/
z=x;
/*Copying the first variable value to the tempriory variable*/
x=y;
/*Copying the second variable value to the first variable*/
y=z;
/*Copying the tempriory variable value to the second variable*/
cout<<" "<<x<<" "<<y;
}
Swapping of Two Numbers Using Function Call by Reference & Call by Value
1. Call by Value
In Call by Value Actual parameters are passed while calling the function, The operation's effect on the formal parameters doesn't reflect on the Actual Parameters.
Example: Int A = 5 is an actual parameter and Int X = 5(Here we have Copied the Int A = 5 value to the X = 5), so whatever we do with the X, it does not reflect the Actual Value Int A = 5. It will always remain the same. If we increase the value of the X by 1 then the value of the X will be 6 and the value of the A remains the same as 5 as previously.
In Call by Reference, we passed the address of the actual parameter in a formal parameter, So the changes on the Formal Parameters reflect on the Actual parameters. If we take the above example for this then if we increase the value of the X will reflect on the A thus the value of the X and A will be the same(X = A = 6)
Before going to understand the Call by value and Call by Reference let's first understand the Actual and Formal Parameters terminology to fully understand the code.
Example: Int A = 5 is an actual parameter and Int X = 5(Here we have Copied the Int A = 5 value to the X = 5), so whatever we do with the X, it does not reflect the Actual Value Int A = 5. It will always remain the same. If we increase the value of the X by 1 then the value of the X will be 6 and the value of the A remains the same as 5 as previously.
2. Call by Reference
In Call by Reference, we passed the address of the actual parameter in a formal parameter, So the changes on the Formal Parameters reflect on the Actual parameters. If we take the above example for this then if we increase the value of the X will reflect on the A thus the value of the X and A will be the same(X = A = 6)
Before going to understand the Call by value and Call by Reference let's first understand the Actual and Formal Parameters terminology to fully understand the code.
Actual Parameters: The Actual parameters that appear in function calls.
Formal Parameters: The Formal parameters that appear in function declarations.
0 Comments: