home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c031
/
4.ddi
/
SAMPLES
/
IOSTUTOR
/
EXIOS117.CP$
/
EXIOS117
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1991-11-25
|
230 b
|
12 lines
// exios117.cpp
// Using get with a buffer and length
#include <iostream.h>
void main()
{
char line[25];
cout << " Type a line terminated by carriage return\n>";
cin.get( line, 25 );
cout << ' ' << line;
}