299 views
1 votes
1 votes

What is the logic behind this code.

#include <stdio.h>
void main() {
        int x;
        x = 3 > 2 > 1;
        printf("%d", x);
        return;
}

 

Please log in or register to answer this question.