In C++ cout is:
a) object
b) class
c) something else
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / reejusri
Its an Object of class OStream, thats why we add its
corresponding header file that is <iostream.h>, Open this
header file you wil get complete infomation.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / kiruthika
C++ treats everything as an object.me,u,we,cout all are
object in C++.So cout is an object.
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / shakti singh khinchi
object of ostream_withassign. (a) is the right answer.
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / hemant majithia
ans is a) it is an object of ostream_withassign.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / manju
The answer is someting else.
cout is an ostream opertor.
| Is This Answer Correct ? | 4 Yes | 14 No |
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
List the special characteristics of constructor.
Can you declare an array without a size in c++?
How do you establish a has-a relationship?
Is linux written in c or c++?
What is the full form of c++?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
What are the popular tools used to detect memory leaks in c++
What are special characters c++?
Why do you use the namespace feature?
Explain what are the sizes and ranges of the basic c++ data types?
What is ctime c++?