Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 6 lesson 3

Help
by

1 Answer

sam5epi0l
Try this code:


#include <stdio.h>

int main() {

int x;
scanf("%d", &x);
if(x > 10) {
printf("Value of X is greater than 10");
}
else {
printf("X is less than 10");
}

return 0;
}

Login / Signup to Answer the Question.