█████████████████████████████████████████████████████████████████████████████████████████████████████████
-
█████████████████████████████████████████████████████████████████████████████████████████████████████████
cout is also known as a character output
The cout object is used along with the insertion operator <<
in order to display a stream of characters.
-
cout can be used as multiple print operations
EXAMPLE...
-
cout << "hello world" << endl;
cout << "my name is..." << endl;
-
output...
-
hello world
my name is...
█████████████████████████████████████████████████████████████████████████████████████████████████████████