In C++ cout is:
a) object
b) class
c) something else
Answer Posted / 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 |
Post New Answer View All Answers
What is #include ctype h in c++?
What data encapsulation is in c++?
Does c++ have finally?
Explain selection sorting?
Difference between declaration and definition of a variable.
What are enumerations?
What are the new features that iso/ansi c++ has added to original c++ specifications?
List the merits and demerits of declaring a nested class in C++?
what is Member Functions in Classes?
What is the copy-and-swap idiom?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What are c++ data types?
Define pre-condition and post-condition to a member function in c++?
How many types of scopes are there in c++?
Why can’t you call invariants() as the first line of your constructor?