answersLogoWhite

0


Best Answer

Not defined by the language, it depends on the OS/platform/context. Usually, it is the terminal(emulation) or DOS-shell or console in which the program runs.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the standard output device in c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the basic input and output of c and c plus plus?

That is STANDARD input and STANDARD output. By default, standard input is the keyboard, and standard output is the screen. Standard I/O is set by the operating system, though it may be redirected by script invocation or system commands within the C/C++ program itself. You could, for instance, set standard output to a printer or a file in lieu of a screen. You should also Google Standard Error.


Input output function in c plus plus?

input is the << operator and output is the >> operator


Is the C plus plus object that displays output on the monitor screen?

No. The C++ standard library provides the global std::cout object which represents the console output stream. While it can use the computer's monitor (or rather, a command window) to present its output to the user, the user is free to redirect output to any device they wish, be it a printer, a file, or another program, even the nul device (a non-existent device that simply "eats" output). The default output device is implementation-defined but, in most cases, will default to the command window


What is the object used to print information on the screen in C plus plus?

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).


Is monitor and c p u you an output device?

A Monitor is an output device, but a CPU is not


What are the Example Output of Calculator Program in C plus plus?

example output of c++ calculator


What is null printer in c plus plus?

There is no such thing as a null printer in C++. You are perhaps thinking of the null device to which output can be redirected from the command line (effectively hiding the output of a program). However this has nothing whatsoever to do with C++, it is entirely dependant upon the operating system.


What is the header for basic input or output in C Plus Plus?

For basic input and output in C++: #include


Which device is output and input?

C. Microphone


Why wev use of stdioh in c?

stdio.h files are used in c ,because "stdio" stands for standard Input and Output files .these headers is connect i/o device to the compiler


How can you view page by page output in c plus plus?

Pipe the output to the MORE command.


Why you use constreamh in c plus plus?

There is no such header in C++. You must consult the documentation provided with the file. It is most likely related to console input/output, perhaps providing enhancements to the standard I/O stream implementation.