Which will be the correct output:
#includeiostream
using namespace std;
void Execute(int &x, int y = 200)
{
int TEMP = x + y;
x+= TEMP;
if(y!=200)
coutTEMPxy"--";
}
int main()
{
int A=50, B=20;
coutAB"--";
Execute(A,B);
coutAB"--";
return 0;
}


Posted on by