// Determine the larger value of two parameters
void Larger(int,int&,int);

int iVal1 = 90;
int iVal2 = 65;
int iVal3;

store the larger of iVal1 and iVal2 into iVal3