/* Program #1 -My first C++ program
After typing this program save it in program1.cpp in your directory
**/
#include <iostream.h>
// main ( ) is where program execution begins
main ( )
{
cout << "This is my first C++ program";
return 0;
}