What is the output of the following code fragment? (Note: alpha and beta are int variables.)
alpha = 5;
beta = 10;
if (beta >= 10)
{
int alpha = 10;
beta = beta + alpha;
cout << alpha << ' ' << beta << endl;
}
cout << alpha << ' ' << beta << 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.