samedi 19 décembre 2015

C++ Language If-statement flow

I want to know the flow of following if condition:

void main()
{
    int num=10;
    if(num < (12 && 14))
        cout<<"Print 1";
    else
        cout<<"Print 2";
    getch();
}

Aucun commentaire:

Enregistrer un commentaire