Q. What is the output of C Program.?
Code:
int main()
{
int a=5, b=8;
if( a==5 || (b=9) )
{
printf("Gorilla Glass=");
}
printf("%d %d", a, b);
return 0;
}
β
Correct Answer: (C)
Gorilla Glass=5 8