I once saw this line of code:
std::cout %lt;%lt; "Hello world!" %lt;%lt; std:: endl;
And am wondering what %lt;%lt; means.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You must have seen that online. Someone uploaded this line:
Which was translated to this for output to html:
Because, of course,
<is the html entity for<.Finally, something somewhere decided to change the ampersands to percent signs, possibly as part of a url-encoding scheme.