Learn English – How to pronounce the << operator

pronunciation

How do you pronounce the << operator?

For example it is used in here.

Best Answer

In the context of iostreams, writers often will refer to << and >> as the “put-to” or "stream insertion" and “get-from” or "stream extraction" operators, respectively* .

If you are using << for output in C++ programming then I would just call it "put-to".

(Otherwise, that would also be used as the bitwise left shift in binary operations, but I doubt that is what you meant)

Related Topic