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