fork download
  1. #include <iostream>
  2.  
  3. int main(){
  4. int x = 5;
  5. int y = ++x;
  6. std::cout << y;
  7. }
Success #stdin #stdout 0.01s 5280KB
stdin
45
stdout
6