fork download
  1.  
  2.  
  3. #include "stdio.h"
  4.  
  5. int main()
  6. {
  7. // rea de rectangulo
  8.  
  9. int c; // contador
  10. for (c =1; c <=50; c++)
  11. printf("%i " , c);
  12.  
  13. getch();
  14.  
  15. return 0;
  16. }
  17.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
julianna
compilation info
prog.c: In function ‘main’:
prog.c:13: warning: implicit declaration of function ‘getch’
/home/VG7ACp/ccZ772q8.o: In function `main':
prog.c:(.text+0x39): undefined reference to `getch'
collect2: ld returned 1 exit status
stdout
Standard output is empty