home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 18.ddi / EXAMPLES.PAK / MYMAIN.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-02  |  194 b   |  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.