home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C Programming Starter Kit 2.0
/
SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso
/
bc45
/
examples.pak
/
MYMAIN.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-07-23
|
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";
}