C - onditional Statements
What will be the output of this C code?
#includeint main() { int x = 10; if (x > 5) { printf("Greater\n"); } else { printf("Smaller\n"); } return 0; }
