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 "map" in STL?
What does it mean to declare a member function as virtual?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
Difference between a homogeneous and a heterogeneous container
How do you clear a buffer in c++?
Difference between overloading vs. Overriding
Which coding certification is best?
How a new operator differs from the operator new?
What is the type of this pointer in c++?
What is the use of namespace std in C++?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
What is volatile and pragma? When they are used?