// Show case #1: Source code of a C++ Program,
#include <iostream> //inclusion of support for doing input & output
using namespace
std; //declare access to standard stuff like cin, cout
// Beginning of the main function
int
main()
{
//Display a
message for the user
cout
<< "Hello, this is my first computer
program." << endl;
cout
<< "Thanks for running this program. Do
you like it? (Y or N)" << endl;
//Read the
user's input
char input;
cin
>> input;
//Finish the
main function and return the control to the caller
return 0;
}
//End of the main function.