CJCoding With Joseph
← Back to Question List
C Code Walkthrough #19

A Comparison Is a Number

easyOperators

📄 Code

Read carefully — what does this print?
1#include <stdio.h>
2int main() {
3 int result = (5 > 3) + (2 > 4);
4 printf("%d\n", result);
5 return 0;
6}

🎯 Your Answer