fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int main ()
  6. {
  7. int n;
  8. n = 1;
  9. while (n <= 25); ++n; {
  10. if ((n %3) == 0);{
  11. printf ("%d\n", n);
  12. }
  13. return 0;
  14. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:14:1: error: expected declaration or statement at end of input
 }
 ^
stdout
Standard output is empty