A
Q. What is the output of the C statement.?
Code:
int main()
{
int a=0;
a = 5<2 ? 4 : 3;
printf("%d",a);
return 0;
}
{
int a=0;
a = 5<2 ? 4 : 3;
printf("%d",a);
return 0;
}
- Correct Answer - Option(B)
- Views: 14
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.