fork download
  1. int main()
  2. {
  3. // area de rectangulo
  4.  
  5. int c; // contador
  6.  
  7. for (c = 1; c <= 50; c++)
  8. printf("%i ", c)
  9.  
  10. //printf("c: %f", c);
  11.  
  12. //getch();
  13.  
  14. return 0;
  15. }
  16.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:8: warning: implicit declaration of function ‘printf’
prog.c:8: warning: incompatible implicit declaration of built-in function ‘printf’
prog.c:14: error: expected ‘;’ before ‘return’
stdout
Standard output is empty