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