home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / EXAMPLES.PAK / MYMAIN.CPP < prev    next >
C/C++ Source or Header  |  1995-08-29  |  194b  |  14 lines

  1. #include <iostream.h>
  2. #include "myfuncs.h"
  3.  
  4. void main(int argc, char *argv[])
  5. {
  6.     char *s;
  7.  
  8.     if(argc > 1)
  9.         s=argv[1];
  10.     else
  11.         s="the universe";
  12.     cout << GetString() << s << "\n";
  13. }
  14.