A

Admin • 833K Points
Coach

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;
}
  • (A) 5 8
  • (B) 5 9
  • (C) Gorilla Glass=5 8
  • (D) Gorilla Glass=5 9
  • Correct Answer - Option(D)
  • Views: 31
  • Filed under category C Programming
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.