PRINCIPLES OF PROGRAMMING LANGUAGES
PRACT. Write a program in C++ to implement call by reference parameter passing Method.
#include <iostream>
using namespace std;
void show(int *x)
{
cout<<*x<<endl;
}
int main()
{
int age = 20;
show(&age);
return 0;
}