C - Operators and Expressions
What will be the output of the following C code?
int a = 5, b = 10;
if (a > b) {
printf("True\n");
} else {
printf("False\n");
}