#include <stdio.h> int main() { printf("%d\n", 10 > 9); // 1 (true) printf("%d\n", 10 == 9); // 0 (false) printf("%d\n", 10 < 9); // 0 (false) return 0; }
Click Run to execute this code.