In C++, cout sends formatted output to standard output devices, such as the screen.
Mercy Margret Answered question July 6, 2023
- The cout is used very often for printing outputs, i.e., on the monitor.
- The predefined object cout is an instance of iostream class. For formatted output operations, cout is used together with the insertion operator, which is written as “<<” (i.e., two “less than” signs).
Shathana. S.R. Answered question July 6, 2023
