fork download
  1. int main()
  2. {int count =1;
  3. while (count <=100)
  4. {
  5. printf("%d", count);
  6. count+;
  7. }
  8. return 0;
  9. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:5:2: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration]
  printf("%d", count);
  ^~~~~~
prog.c:5:2: warning: incompatible implicit declaration of built-in function ‘printf’
prog.c:5:2: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
prog.c:6:8: error: expected expression before ‘;’ token
  count+;
        ^
stdout
Standard output is empty