home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
EXAMPLES.PAK
/
MYMAIN.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
194b
|
14 lines
#include <iostream.h>
#include "myfuncs.h"
void main(int argc, char *argv[])
{
char *s;
if(argc > 1)
s=argv[1];
else
s="the universe";
cout << GetString() << s << "\n";
}