C++ Programming - OOPS Concepts - Discussion

Discussion Forum : OOPS Concepts - General Questions (Q.No. 12)
12.
cout is a/an __________ .
operator
function
object
macro
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
52 comments Page 5 of 6.

Pawan gupta said:   1 decade ago
It belongs to iostream class so member of any class is an object.

Pooja said:   1 decade ago
cout is predefined in iostream.h.

Can anyone tell me how it is object.

Sumeet said:   1 decade ago
cout is a stream extraction operator. It is an object of ios class which is predefined in iostream.h header file.

Navin said:   1 decade ago
If cout is an object. Can anyone tell me where this object is getting created ?

RAJESH said:   1 decade ago
Its object in ostream.h header file and cin is in istream.h.

Amarn kokare said:   1 decade ago
count is a object of a ostream class and we can include a library file in program header, and using this object user can print a data on console.

Sandesh said:   1 decade ago
cout is a object and not a function. cout is an output stream object that refers to the monitor whereas cin refers to the keyboard.Both are defined in the header file <iostream.h>

Shona said:   1 decade ago
cout is an object of class ostream that represents the standard output stream. So the class is ostream not cout.

Sanil said:   1 decade ago
Can anyone tell why cout is an object ?

Ratnesh said:   1 decade ago
cout is object of ostream class & cin is the object of istream class. istream & ostream makes iostream


Post your comments here:

Your comments will be displayed after verification.