fork(4) download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. int a = 5, b = 7, c = 9;
  6. c += a--*++b;
  7. std::cout << a << " " << b << " " << c << std::endl;
  8. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
4 8 49