fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a;
  5.  
  6. for(a=0;a<=5;a++) {
  7. printf("%d\n",a);
  8. }
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5520KB
stdin
Standard input is empty
stdout
0
1
2
3
4
5