home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoftware Monthly 19…2 Programming Power Tools
/
MASO9512.ISO
/
cpptutor
/
cpptutor.arj
/
EXAMPLES
/
EX1101.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-10-27
|
279 b
|
14 lines
// \EXAMPLES\EX1101.CPP
#include <iostream.h>
void main() {
char name[50];
int age;
cout << "Please type in your name and age and hit ENTER"
<< endl;
cin >> name >> age;
cout << "Hello " << name << ", your age is " << age
<< endl;
}