What will the following program segment display?
int funny = 1, serious;
if (funny != 1)
{ funny = serious = 1;
}
else if (funny == 2)
{ funny = serious = 3;
}
else
{ funny = serious = 5;
}
cout << funny << " " << serious << endl;
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.