home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / hello.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-16  |  129 b   |  10 lines

  1. // a trivial C++ program that says hello
  2.  
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.   cout << "Hello Programmer!";
  8.   return 0;
  9. }
  10.