answersLogoWhite

0


Best Answer

You are probably referring to the global std::cout object, however std::cout does not put information on a screen, it puts information into the standard console output device which can be redirected to any output device the user chooses (the screen, a file, a line-printer, the nul device, etc).

User Avatar

Wiki User

7y ago
This answer is:
User Avatar
More answers
User Avatar

Soma Baqri

Lvl 2
1y ago

Cout

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the object used to print information on the screen in C plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Is c plus plus 100 percent object oriented?

No; C++ is not 100% object oriented.


What language is completely object oriented c plus plus or java?

Java is the complete object oriented Programming Language as every thing in java is an object,


What command is used to destroy object in c plus plus?

You use delete object in C++ to delete an object. You can also implicitly delete the object, if it is automatic type, by going out of local scope.


What actually mean by object oriented programming Is C plus plus is a object oriented programming?

Just eat a watermellon!


Is c plus plus an object oriented language or an object based language?

C++ is object-oriented. It is not object-based because, like C before it, C++ supports the principal of primitive data types, which are not object-based.

Related questions

How do you print to the screen in C plus plus?

printf();


What is ctrl plus shift plus plus sign shortcut for?

Magnify the information displayed on the screen.


How do you get to 9 using 123456789 - plus using numbers and symbols only once?

-- Photocopy the question or print the screen. -- Trim and discard the first 8.


What is object oriented language in c plus plus?

C++ enables object oriented programming through the use of classes, where an object is an instance of a class. A class is essentially a data type, one that can store information (much like an int stores a value) and that provides an interface to that information.


How to screenshot on computer?

Use "PrntScr" (Print Screen) key on Keyboard.


How can print screen output in borland c plus plus?

Redirect the output to a file via the command line. Print the file. For example, if the program is named foo.exe, the output can be redirected to a file named foo.txt with the following command: foo.exe > foo.txt Everything sent to std::cout by the program will now be sent to the file instead. Everything sent to std::cerr will be displayed on screen as normal.


Where can I find out more information about the Sharp FX PLUS?

You can find out plenty of information on the Sharp FX PLUS at www.wireless.att.com. They show you everything from the amazing wireless internet capabilities to the profounding 3.2 display screen.


Plus 1 blue print for chemistry?

i want plus 1 blue print for all subjects


Can anyone give a logic in c plus plus to print something on screen using printf statement but without semicolon used after printf statement?

try to usecondition ? value if true : value if falseor: if (printf ("Hello")) {}


Write a C plus plus function that print a triangle of stars?

Write a function that print a triangle of stars.


What is the use of print option in c plus plus?

C++ has no print option. The print option in your IDE allows you to print your C++ source code, thus giving you a "hard" copy of your code.


Is there a difference between you plus plus and plus plus you?

you++ will return the current value of you and increment it. ++you will increment it and then return the new value of you. So, for example: int you = 0; cout << you++; // this will print 0 cout << you; // this will print 1 int you = 0; cout << ++you; // this will print 1 cout << you; // this will also print 1