
please wait
|
|
>>
Is called the Extraction operator, for instance: std::cin >> var;
. The operator extracts a value from std::cin (standard input) and puts it into "var".<<
Is called the Insertion operator, for instance: std::cout << var;
. The operator inserts the value of var into std::cout (standard output), effectively printing it on the screen.