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