πŸ“Š C Programming
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
πŸ’¬ Discuss
βœ… Correct Answer: (D) Gorilla Glass=5 9

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
191
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Ram Sharma
Publisher
πŸ“ˆ
89%
Success Rate