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