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