answersLogoWhite

0


Best Answer

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.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the basic input and output of c and c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

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


What is iosteram in c plus plus?

The <iostream> include file is a header file that contains the prototype declarations of functions that provide the basic input/output mechanisms in C++. The <iostream> header file sets up the objects that initialize the basic input/output pathways, cout and cin.


Input output function in c plus plus?

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


How do you use scanf with delimiter in c plus plus Please provide a basic example with output?

scanf does not employ a delimiter. It simply reads formatted input from std::cin.


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 are file modes in c plus plus?

I guess you mean either input/output/inout/append or binary/text.


What is stream operator in c plus plus?

There are two stream operators: << (insert or put) and >> (extract or get). Output streams implement the insertion operator, input streams implement the extraction operator and input/output streams implement both operators.


Which code i need to delete middle digit in 3 digit number in c plus plus?

If you know that the number input will always be three digits: output = 10 * (int)(input / 100) + (input % 10); If you want to idiot proof it (eg. too many digits): output = 10 * (int)((input % 1000) / 100) + (input % 10);


Input and output of turbo c?

input scanf() , getch() , getche() output printf() , putch() , putchar()


What do you mean by input output in c?

computer


Which device is output and input?

C. Microphone


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

example output of c++ calculator