A
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;
}
{
int a=5, b=8;
if( a==5 && (b=9) )
{
printf("Gorilla Glass=");
}
printf("%d %d", a, b);
return 0;
}
- Correct Answer - Option(D)
- Views: 31
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.