Log in

View Full Version : Input Output


punch999
07-04-2005, 09:08 PM
I really am interested in learning c++ but as i was going thru the tutorial i found all this
input output crap what is this and can some1 please explaing to me what it is

NrmMyth
07-04-2005, 09:23 PM
First I didn't understand a thing you asked!

Then It would be great to start from a book i you never before did any real programming (that don't include RPG makers,ecc).

taikara
07-04-2005, 09:34 PM
Umm...

Input = information you put into a program.

Output = what the program does with the input, and gives back as information.

Marek
08-04-2005, 06:52 AM
Even more simply...

Input = Stuff you type... :D

Output = Stuff your program shows on the screen... :D

punch999
12-04-2005, 07:48 PM
ok thank you

Danny252
14-04-2005, 06:36 PM
heh theres also (in qbasic at least) commands input and output (apart from what the user types or what is shown on the screen) which is about files, i.e. using a file on your pc for input (eg save games) or output (high scores).

Rogue
14-04-2005, 06:49 PM
Input and output in C++ does not mean just what you type on keyboard and what will show on the screen.

Input is generaly any incomming information to the program, either from keyboard, mouse, file, com port...

Output is sending information to desired output device, such as screen, printer, file, ....

Danny252
14-04-2005, 07:06 PM
but unless you include a print button or scan option, you wont need too much of that ^^