reference c++ code example
Example 1: reference function in c++
void swap(int &x, int &y) {
int temp;
temp = x;
x = y;
y = temp;
return;
}
Example 2: reference variablesr in c++
Value of i : 5
Value of i reference : 5
Value of d : 11.7
Value of d reference : 11.7
Example 3: reference variablesr in c++
#include <iostream>
using namespace std;
int main () {
int i;
double d;
int& r = i;
double& s = d;
i = 5;
cout << "Value of i : " << i << endl;
cout << "Value of i reference : " << r << endl;
d = 11.7;
cout << "Value of d : " << d << endl;
cout << "Value of d reference : " << s << endl;
return 0;
}
Example 4: reference function in c++
#include <iostream>
using namespace std;
void swap(int &x, int &y);
int main () {
int a = 100;
int b = 200;
cout << "Before swap, value of a :" << a << endl;
cout << "Before swap, value of b :" << b << endl;
swap(a, b);
cout << "After swap, value of a :" << a << endl;
cout << "After swap, value of b :" << b << endl;
return 0;
}