Q. What is the output of C Program.?
Code:
int main()
{
int a=0, b;
a = (5>2) ? b=6: b=8;
printf("%d %d",a, b);
return 0;
}
β
Correct Answer: (D)
compiler error