C Programming Part I
What is output by the following code? int x = 23; if (x > 23 && x <= 100) { printf("I like the number %i\n", x); } else { printf("I don't like the number %i\n", x); }
What is output by the following code? int x = 23; if (x > 23 && x <= 100) { printf("I like the number %i\n", x); } else { printf("I don't like the number %i\n", x); }