name the operator used with cout in c++
Answers
Answered by
2
Answer:
Standard output (cout) On most program environments, the standard output by default is the screen, and the C++ stream object defined to access it is cout . For formatted output operations, cout is used together with the insertion operator, which is written as << (i.e., two "less than" signs).
Explanation:
Hope this helps.
Mark me as brainliest.
Thank you.
Answered by
1
Standard output (cout) On most program environments, the standard output by default is the screen, and the C++ stream object defined to access it is cout . For formatted output operations, cout is used together with the insertion operator, which is written as << (i.e., two "less than" signs).
Hope its helpful.
Similar questions