+ 1

What does insertions mean?

C++

24th May 2019, 4:43 AM
Bishnu
Bishnu - avatar
1 Réponse
+ 2
In terms of input/output in C++, there are two common operators being used, the insertion and extraction operator. Both these operators are defined with I/O stream and derived streams. ● The insertion operator `<<` inserts something into the output stream object. For example we commonly use std::cout object to output something to the screen `std::cout << some_variable;` ● The extraction operator `>>` extracts something from the input stream object. For example we commonly use std::cin to get input: `std::cin >> some_variable;` More details here: http://faculty.cs.niu.edu/~hutchins/csci241/io-op.htm Found a similar question: https://www.sololearn.com/Discuss/256485/?ref=app
24th May 2019, 6:10 AM
Ipang