fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. for (int i=10; i-->0; )
  7. cout << "i=" << i << endl;
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 4380KB
stdin
Standard input is empty
stdout
i=9
i=8
i=7
i=6
i=5
i=4
i=3
i=2
i=1
i=0