#includeiostream
using namespace std;
void Execute(int &x, int y = 200)
{
int TEMP = x + y;
x+= TEMP;
if(y!=200)
cout TEMP x y endl;
}

int main()
{
int A=50, B=20;
coutAB"--";
Execute(A,B);
coutABendl;
return 0;
}
Find the output of following code : -

Posted on by