adplus-dvertising
frame-decoration

Question

What is the output of C Program?
int main()
{
    int a=9;
    if(a==5);
    {
        printf("Kangaroo\n");
    }
    printf("Eggs\n");

    return 0;
}

a.

Eggs

b.

Kangaroo
Eggs

c.

No output

d.

Compiler error

Posted under C Programming

Answer: (b).Kangaroo
Eggs

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of C Program?