jeudi 18 janvier 2018

What is the output printed by following program? How to evaluate the if loop Condition expression?

what will be the output for the code snippet given below?

int main()
{

    if(0<7<5)
        printf("I am printed");
    else
        printf("I am not printed");

}

A) I am printed B) I am not printed C) Compiler error D) None

Aucun commentaire:

Enregistrer un commentaire