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
Write a code/algo to find the frequency of each element in an array?
Is c++ primer good for beginners?
How do I exit turbo c++?
What is atoi?
What is a forward referencing and when should it be used?
What is the best c c++ compiler for windows?
Describe linkages and types of linkages?
What is the difference between public, private, and protected access?
What is & in c++ function?
What is a local reference?
Differentiate between an array and a list?
What is searching? Explain linear and binary search.
How many types of scopes are there in c++?
Why is swift so fast?
Write a C++ Program to check whether a number is prime number or not?