#include <iostream.h>
#include<conio.h>
void myFunction(int,int*);
void myFunction_secondForm(int, int&);
void main()
{
clrscr();
int callValue=2;
int callReference=2009;
myFunction(callValue, &callReference);
cout<<"The modified value of the variable callReference is now :"<<callReference<<"\n";
myFunction_secondForm(callValue, callReference);
cout<<"The modified value of the variable callReference is now :"<<callReference<<"\n";
getch();
}