+ 1
What is extraction operator << and insertion operator >> means in c++?
example like cout and cin are objects
3 odpowiedzi
+ 2
<< : extraction operator will extract the contents to the console output ..ie,everything on the right side of the << will be given to the cout(console output)
>> : insertion operator will read the contents from the console input ..ie,whatever read from left side of >> (console input) is given to the variables on the right side
0
I want learn java from the introduction
0
anlamiom