What is mean of cout in cpp | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

What is mean of cout in cpp

19th Jun 2019, 6:01 AM
AKULA HARISH
AKULA HARISH - avatar
23 Answers
+ 10
If you are familiar with printf in C language it is similar to cout. The only difference is there is no need of format specifiers while using cout. It is always used with extraction operator (<<). To use cout<< you need to include <iostream> in your code.
19th Jun 2019, 6:49 AM
Manoj
Manoj - avatar
19th Jun 2019, 6:04 AM
Shadow Ninja[#Inactive]
Shadow Ninja[#Inactive] - avatar
+ 2
print or display command
19th Jun 2019, 7:56 PM
ShriekDj
+ 2
cout = Console Output = Monitor Output
25th Jul 2019, 1:59 AM
Alex Stone
+ 2
It is a output stream used to print the text it is similar to printf that is used in C well you can also use printf instead of cout if you want for your ease
10th Aug 2019, 7:44 AM
Hami
Hami - avatar
+ 1
Thanks
19th Jun 2019, 6:05 AM
AKULA HARISH
AKULA HARISH - avatar
+ 1
Basically you know that the CPP is a object oriented programming language ,so the cout is a object of the iostream class the main difference between the printf and the cout is that ,printf is a predefined function and cout is a object
19th Jun 2019, 7:31 AM
Pulkit soni
Pulkit soni - avatar
+ 1
Thanks friends for giving your honorable information
19th Jun 2019, 12:18 PM
AKULA HARISH
AKULA HARISH - avatar
+ 1
Cpp =nick name The c++
26th Jun 2019, 4:39 AM
Abdalrazzaq Abdullah Ezzi
Abdalrazzaq Abdullah Ezzi - avatar
+ 1
Yes
30th Jun 2019, 11:54 AM
Mulyo Anjang Jaya Kusuma
+ 1
Cout is object of class iostream It is use to get output print on console screen If you are familiar with C language Printf it does same thing of printing only difference is cout doesn't require any Format specifier to print
25th Jul 2019, 2:50 AM
Ajay Sanap (Victor)
Ajay Sanap (Victor) - avatar
+ 1
Simply means "Display"
21st Sep 2019, 11:16 AM
Newland Lotsu
Newland Lotsu - avatar
0
To print text
4th Jul 2019, 8:09 PM
SpaceJunk
SpaceJunk - avatar
0
COUT(Character_OUTput)
6th Jul 2019, 11:21 AM
Tandoori Pirate
Tandoori Pirate - avatar
0
To disply the given text
13th Jul 2019, 4:51 PM
Suneetha
0
Cout is use to print character or alphabet on screen.. It doesn't require any format specifier. To cout or cin you need class call iostream.h You can also say Cout is obj of class iostream And one last thing Cout means console output
14th Jul 2019, 5:15 PM
Ajay Sanap (Victor)
Ajay Sanap (Victor) - avatar
0
Tq friends
27th Jul 2019, 5:52 AM
mahesh maile
0
to print the output on your display
27th Jul 2019, 6:40 AM
Ritik Saini 🇮🇳
Ritik Saini 🇮🇳 - avatar
0
The thing which you want to display on screen as output is written in it
3rd Aug 2019, 8:49 AM
Talha Khan
Talha Khan - avatar
0
To print something
6th Aug 2019, 5:55 AM
Turab Bajeer
Turab Bajeer - avatar