+ 5
What is mean of cout in cpp
23 Respostas
+ 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.
+ 7
Check this out
https://www.sololearn.com/learn/CPlusPlus/1604/
+ 2
print or display command
+ 2
cout = Console Output = Monitor Output
+ 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
+ 1
Thanks
+ 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
+ 1
Thanks friends for giving your honorable information
+ 1
Cpp =nick name The c++
+ 1
Yes
+ 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
+ 1
Simply means "Display"
0
To print text
0
COUT(Character_OUTput)
0
To disply the given text
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
0
Tq friends
0
to print the output on your display
0
The thing which you want to display on screen as output is written in it
0
To print something