fork download
  1. #include <stdio.h>
  2. int main (void)
  3. {
  4. int x;
  5. x = 5000;
  6.  
  7. if ((x < 1000) || (x > 10000))
  8. {
  9. printf ("Il valore di x non è valido!\n");
  10. }
  11. else if ...
  12. {
  13. ...
  14. ...
  15. ...
  16. }
  17. getchar ();
  18. return 0;
  19. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:11: error: expected ‘(’ before ‘...’ token
stdout
Standard output is empty