/* * My first C++ program. * This is a comments. Comments are ignored by the compiler. * They serve as information to a programmer. * Comments begin with // or /* */ #include //This is a library that contains prewritten input and output functions we are going to use. using namespace std; //This is to denote which namespace we are using by default int main() //Execution starts here { cout<<"Hello World!"<