Whats the meaning of this "<<"? I've tried googling but the search won't retrieve the result
In what context? Technically << is a left shift operator and >> is a right shift operator.
In this case they are used for insertion and extraction with the I/O streams.
<< insert into the stream: http://www.cplusplus.com/reference/iostream/ostream/operator%3C%3C/
>> extract from the stream: http://www.cplusplus.com/reference/iostream/istream/operator%3E%3E/
The links to the reference pages here seem to be broken at this point.
Last edited on