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