C++'s std::cout seems to be an interesting thing. I tried the following program on my C++ compiler today:
cout<<"!"<<"@"<<endl;
cout<<"!"<<cout<<"@"<<endl;
cout<<"!"<<(cout<<"@")<<endl;
And the outputs are rather curious:
!@
!0x601068@
@!0x601068
The first line is pedestrian; the second is understandable; however, the third line is beyond my knowledge. Could someone explain the output? Thank you guys all in advance!
Ziyao Wei
