int j=5; std::cout << ++j <<" " << j++ <<" "<< ++j;
Why does this program give the following output:
8 6 8