fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. for ( int idx = 0; idx < 5; ++idx )
  6. cout << idx << ' ';
  7. cout << endl;
  8.  
  9. for ( int idx = 0; idx < 5; idx++ )
  10. cout << idx << ' ';
  11. cout << endl;
  12. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
0 1 2 3 4 
0 1 2 3 4