In C++ cout is:
a) object
b) class
c) something else
Answers were Sorted based on User's Feedback
Answer / sriram
ANSWER IS C. COUT IS AN BUID IN OPERATOR THAT WAS DEFINED
IN HEADER FILE: <IOSTREAM.H>
SINCE, IN C++ COUT IS AN CONSOLE OUTPUT OPERATOR.
| Is This Answer Correct ? | 2 Yes | 17 No |
What is the need of a destructor? Explain with the help of an example.
Is it possible to write a c++ template to check for a function's existence?
How do I get good at c++ programming?
What is a map in c++?
What is c++ best used for?
Please explain class & object in c++?
What's the "software peter principle”?
What is the purpose of templates in c++?
Why do we use the using declaration?
What is the use of setprecision in c++?
Is facebook written in c++?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;