+ 1
What is cout means In c++ language
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đđđ
+ 1
cout is an object of class stdout not a function
+ 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
0
cout mean print
par example
int x=4;
cout<<x; //x is printed // output 4
0
Thanks guys for belping