In C++ cout is:
a) object
b) class
c) something else

Answer Posted / kiruthika

C++ treats everything as an object.me,u,we,cout all are
object in C++.So cout is an object.

Is This Answer Correct ?    10 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is c++ a pure oop language?

588


Where do I find the current c or c++ standard documents?

573


What is function prototyping? What are its advantages?

583


What are iterators in c++?

587


What is long in c++?

726






Explain the difference between class and struct in c++?

583


Explain the benefits of proper inheritance.

631


What is a manipulative person?

529


What is meant by the term name mangling in c++?

510


A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.

1736


What happens when the extern "c" char func (char*,waste) executes?

625


Is nan a c++?

604


Write is a binary search tree? Write an algo and tell complexity?

575


Do class method definitions?

579


Do you know about C++ 11 standard?

627