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