fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. int x = 1;
  5. for(int a=0; a<10; a++);
  6. // what happens with x?!!??/
  7. ++x;
  8. std::cout << x << std::endl;
  9. }
  10.  
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
2