+ 1
What is function of << in front of cout
7 Respuestas
+ 5
It is operator....of cout
+ 2
cout << "hello world";
+ 1
how much will it take to learn new things,..
suppose I never learned c++
+ 1
it is not in front, it is at the back (assuming front is before and back is after).
It means "write the following string to the output"
0
<< this is an insertion operator in c++
0
this is insertion operation in c++ <<
0
It indicates that data will out to the screen or a file for example.