What is cout means In c++ language | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is cout means In c++ language

12th Jul 2017, 9:49 AM
bhuvana chandra
bhuvana chandra - avatar
5 Answers
+ 5
cout is a liberary function which can be used by including iostream amd it is one of the most important function which is used to display output cout<<number; to display int, double, float data types cout<<"string"; to display strings and characters there is also cin another liberary function which is used in the same way but to take user input. hope this will help😉😉😉
12th Jul 2017, 9:59 AM
Ermyas
Ermyas - avatar
+ 1
cout is an object of class stdout not a function
12th Jul 2017, 10:01 AM
Omar Serrar
+ 1
stdin = STandarD INput stream stdout= standard output stream stderr = standard error stream cin = input from stdin cout = output from stdout wcerr = output from stderr
12th Jul 2017, 11:54 AM
Boris Batinkov
Boris Batinkov - avatar
0
cout mean print par example int x=4; cout<<x; //x is printed // output 4
12th Jul 2017, 9:54 AM
Elie Douaihy
Elie Douaihy - avatar
0
Thanks guys for belping
13th Jul 2017, 5:19 AM
bhuvana chandra
bhuvana chandra - avatar