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