+ 2
What is the mean of cout
16 Antworten
+ 9
cout means console output..
if we write ..
cout<<"hello";
then it prints hello on screen
+ 5
to print on screen output simply
+ 4
Cout stands for console output. It is present in the <iostream> library. Used to show output on the console
+ 2
cout is a object of ostream class which is declare in headerfile iostream
+ 2
it is a console output stream
ex:cout<<"output=",x;
displays:output=value stored in x variable.
use of cout is to display.
+ 1
c out mens the line which we want to print
+ 1
it is a function that prints something....it is just like printf in c language....
0
cout is a object of ostream class
0
Basically cout is used for displaying whatever you write inside it.
So for example you write cout << "aaa" ;
this means that whatever you write within those inverted comas it will show on the display or the output screen as it is..for example i wrote aaa in those comas so now when i run the program the display screen would only show
aaa
0
cout means the standard console output device, and the verb << means output the object.
we use Cout to print output on the console
Cout is defined in header file <iostream.h>
0
cout is basically used to display something on the screen for the user...
0
to say
- 1
print on the screen
- 1
meaning of the cout is " outputting the results of the specific function "
- 1
cout is a object of ostream class
- 1
console output