C++ Streams: A Quick Definition
This is a very minimal definition, just so you can read code that uses it!
C++ has a “streams” library, which is for I/O (a general way of converting objects to characters)
cin, cout, and cerr are instances of streams that represent standard input, output, and error (this is UNIX-centric)
Use “>>“ for input and “<<“ for output