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
Is sorted c++?
How do you print a string on the printer?
What are the sizes and ranges of the basic c++ data types?
You run a shell on unix system. How would you tell which shell are you running?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
Differentiate between realloc() and free().
What are virtual functions in c++?
What is c strings syntax?
Can I learn c++ without learning c?
Is c++ a good first language to learn?
Explain the problem with overriding functions
What is the role of static keyword for a class member variable?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}