answersLogoWhite

0

In C, there are no input and output statements (formatting or otherwise); I/O is performed via functions.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What are various configurations of differential amplifiers?

Dual input and Balanced output configuration, Dual input and Unbalanced output configuration, Single input and Balanced output configuration and Single input and Unbalanced output configuration


What is input and output distance?

Input distance is the distance from the input device to the system processing the input, while output distance is the distance from the system processing the output to the output device. These measures are important in various fields such as engineering and technology to ensure efficient and accurate communication between input and output devices.


Which stream functions in c plus plus control the formatting of input and output values of a class?

None of them. To control the formatting of your classes, you must overload the stream insertion and extraction operators.


What is the function of the cin and cout statements?

cin and cout are synonymous with stdin and stdout, implementing console input and output respectively.


Is an OMR an input or output?

is an omr and input or output device?


Is interactive whiteboard an input or output device?

both input r output


Is a graphic tablet output or input?

Input device.


Is a projector input or output?

it is an output device


What is the input to output ratio formula?

output/input


Is Digitizing Pad is an input or an output?

output and input


Is a CPU input or output?

Neither, it is not classified under input or output. It has its own identity


What is the input statement for a program?

Input statements extract data from an input stream. For example: int x; std::cin >> x; Output statements insert data to an output stream. For example: std::cout << x; You cannot insert data into an input stream and cannot extract data from an output stream. However, streams that are both input and output streams (such as read-write files) can insert and extract data as required, depending on whether you are reading or writing to the stream.