fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int count;
  8. count = 1 ;
  9.  
  10. while ( count <= 10 ) {
  11. printf("%d\n",11 - count);
  12. count ++ ;
  13. }
  14. }
  15.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
10
9
8
7
6
5
4
3
2
1