What are the names of "<<" and ">>"?
I am wondering if there is a standard name for "<<and" →? This is mainly in the context of learning C ++ and using these operators as part of the stream I / O. If I need to read code or request student answers (e.g. cout << "Hello";
), I'm not sure how to verbalize these characters. Is there a convention when you read them out loud?
According to cplusplus.com documentation:
This operator (<<), applied to the output stream, is known as the insert statement .
...
And from the same site
This operator (→), applied to the input stream, is known as the extraction operator .
...