0

What is cout??

28th Nov 2016, 2:12 PM
Atharva Kulkarni
Atharva Kulkarni - avatar
8 Respostas
+ 3
cout is an object in iostream header file.
28th Nov 2016, 2:14 PM
Aditya kumar pandey
Aditya kumar pandey - avatar
+ 2
cout is an object of ostream class and is used to print anything on screen . we can use this object with " << " (insertion operator).
28th Nov 2016, 5:28 PM
Ritu kapadia
Ritu kapadia - avatar
+ 1
if you want to show sth,you have to use cout
28th Nov 2016, 6:45 PM
Narciso1998
Narciso1998 - avatar
0
it's function is to stream text (or whatever you want it to stream with << operator) to the default output (which in most cases is your screen but you can change it for for example files)
28th Nov 2016, 3:04 PM
Maciej Tracz
Maciej Tracz - avatar
0
Cout is used for print the value
28th Nov 2016, 3:13 PM
Ajeet Singh
Ajeet Singh - avatar
0
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).
28th Nov 2016, 5:15 PM
Abdelaziz Abubaker
Abdelaziz Abubaker - avatar
0
cout stands for C Out
30th Nov 2016, 6:45 AM
Alex
0
cout is short form of console out and totaly cout can print a value u can visit here for more information http://www.cplusplus.com/doc/tutorial/basic_io/
2nd Dec 2016, 9:32 AM
aryan gholizadeh
aryan gholizadeh - avatar