O
Q. The output of
Code:
{
int a = 5;
int b = 10;
cout << (a>b?a:b);
}
int a = 5;
int b = 10;
cout << (a>b?a:b);
}
- Correct Answer - Option(B)
- Views: 162
- Filed under category C++
Discusssion
Login to discuss.