home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////
- // Program Name: Hello.CPP
- /////////////////////////////
-
- //////////////////////////////////////////////////////////
- // Program Description:
- //
- // This program illustrates the use of the cout operator.
- //////////////////////////////////////////////////////////
-
- /////////////
- // #include
- /////////////
- #include <iostream.h>
-
- //////////////////////////
- // Function Name: main()
- //////////////////////////
- void main()
- {
-
- cout << "Hello, this is my first C++ program";
-
- }
-