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