✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Ce se va afișa în urma execuției secvenței de program:
int a = 5; int b = 3; int c;
if (a > b) { if (b < 0) { c = a; } else { c = b; } } else { c = 0; }
cout << "c=" << c << endl;
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!