answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

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

Wiki User

13y ago

First of all, this is a C forum. C and C++ are -- yes, big shock -- different.

Anyhow: the standard output function in C++ is std::cout, and the standard input function is std::cin.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

bbbbbbb

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Input output function in 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


How are input and output functions are accessed in C programming?

The most common way to invoke an input/output function is calling it by its name. Example with function puts:puts ("Hello world");


What is the function of conioh in C?

Not in C, only in TurboC.Direct console input-output (MS-DOS specific).


How do you enter a sentence as input in c plus plus?

Use the C++ getline() function from the standard library.


What is standard library function in c?

The Standard Librarary Function in C is printf,scanf inf Standard input output header.. which is stdio.h.


Is cin an output identifier in c plus plus?

No. In C++ with &lt;iostream&gt;, cin is a prefedined class that represents stdin, so it is an input identifier.


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.


What are file modes in c plus plus?

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


What is iosteram in c plus plus?

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


What is stream operator in c plus plus?

There are two stream operators: &lt;&lt; (insert or put) and &gt;&gt; (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()