home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch02 / hello.cpp < prev   
Encoding:
C/C++ Source or Header  |  1994-01-28  |  523 b   |  25 lines

  1. /////////////////////////////
  2. // Program Name: Hello.CPP
  3. /////////////////////////////
  4.  
  5. //////////////////////////////////////////////////////////
  6. // Program Description:
  7. //
  8. // This program illustrates the use of the cout operator.
  9. //////////////////////////////////////////////////////////
  10.  
  11. /////////////
  12. // #include
  13. /////////////
  14. #include <iostream.h>
  15.  
  16. //////////////////////////
  17. // Function Name: main()
  18. //////////////////////////
  19. void main()
  20. {
  21.  
  22. cout << "Hello, this is my first C++ program";
  23.  
  24. }
  25.