Can you help me explain the result from the following code.
cout<< "Hello" + 1<< endl;
Why result came out as "ello", I know to print out Hello1 then I should use: cout<< "hello" << 1<< endl; But Can anyone help me explain the sequence of the above code: Thank you so much.