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