fork(1) download
  1. #include <iostream>
  2.  
  3. int main() {
  4.  
  5. int n = 3;
  6. n = n++;
  7. std::cout << n;
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
3