answersLogoWhite

0

You use output devices or streams, typically console screens, printers and files.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

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

example output of c++ calculator


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

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


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

Pipe the output to the MORE command.


Is output function printf can not be used in C plus plus programs?

Whoever said so, they were wrong. For sure "printf" can be used without any problem.


Input output function in c plus plus?

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


What is file handling in c and c plus plus or objective c?

File handling is simply the process of opening, reading, writing and closing files. Files are simply streams for input and output, or the "serialisation" of objects. In other words, reading and writing data to and from disk storage.


User defined data type in c plus plus?

Use "typedef" : both in C and C++.


What is data type of md5 output in C?

unsigned char [16]


How do you get an output of a c plus plus program to be printed?

See sources and related links below.


A collection of unorganized fact is (a) Information (b) Output or (c) Data?

,mjkhik,


Is cin an output identifier in c plus plus?

No. In C++ with <iostream>, cin is a prefedined class that represents stdin, so it is an input identifier.


What is the Streaming data in the context of C plus plus refers to what?

Streams provide a unified, generic, input/output mechanism in C++. They allow a consistent method of inserting or extracting data from any physical storage medium that supports a stream implementation, such as a filestream or a stringstream, without the need to know the details of that medium. All streams operate in exactly the same way. To extract data from an input stream, use the extraction operator (>>). To insert data into a stream, use the insertion operator (<<). Some streams are omni-directional (input-only or output-only), while others are bi-directional (both input and output).