In C++ cout is:
a) object
b) class
c) something else
Answer Posted / chandra
cout is an object of class ostream that represents the
standard output stream. It corresponds to the cstdio stream
stdout.
By default, most systems have their standard output set to
the console, where text messages are shown, although this
can generally be redirected.
Because cout is an object of class ostream, we can write
characters to it either as formatted data using for example
the insertion operator (ostream::operator<<) or as
unformatted data using the write member function
| Is This Answer Correct ? | 21 Yes | 1 No |
Post New Answer View All Answers
Can I have a reference as a data member of a class? If yes, then how do I initialise it?
Can manipulators fall in love?
How did c++ get its name?
What is double in c++?
Is there any difference between int [] a and int a [] in c++?
Write a program which employs Recursion
What is binary search in c++?
What is abstract keyword in c++?
Which ide is best for c++?
What causes a runtime error c++?
What are the classes in c++?
What are files in c++?
What do you mean by global variables?
Can recursive program be written in C++?
What are the various compound assignment operators in c++?