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