ArtsAutosBooksBusinessEducationEntertainmentFamilyFashionFoodGamesGenderHealthHolidaysHomeHubPagesPersonal FinancePetsPoliticsReligionSportsTechnologyTravel

The famous C plus plus Hello World Program Explained in Excruciating Detail

Updated on August 27, 2009

The famous C plus plus Hello World Program Explained in Excruciating Detail

By state law, every programmer learning a new computer language is obligated to learn the Hello World program. We present the C++ (C Plus Plus) version of The Famous Hello World Program. In excruciating detail, we analyze each line of the program and systematically remove all the fun from computer programming.

/**********************************************************
  * The Hello World Program                      main.cpp *
  * Name: nicomp                                          *
  * Abstract: My first C++ program.                       *
  * It displays Hello World on the screen                 *
  * Target Compiler: Microsoft C++ / Visual Studio        *
  * Revision History:                                     *
  *********************************************************/
// Drag in a header. 
// This header is provided by Microsoft as part of Visual Studio
#include <iostream>

//Specify the default namespace. Most stuff in iostream is in the std namespace
using namespace std;

// Entry point. There has to be a main() function.
void main()
{
//	Write to the standard output device
	cout << "\n Hello World \n\n";
}

Lines 1 through 8

Lines 1 through 8 of our programming masterpiece consist of comments. This particular program doesn't cry out for copious comments, however we emphasize documentation at every level of programming.

At a minimum, we prefer enough commenting to make the program self-identifying. As a rule of thumb; name, description and revision history should be included.

Visual Studio Screen Captures

Code in Visual Studio. The project builds with no errors or warnings.
Code in Visual Studio. The project builds with no errors or warnings.
Warning Level Set to maximum.
Warning Level Set to maximum.
The output generated by the program.
The output generated by the program.

Lines 9 through 11

Lines 9 through 11 describe and implement the preprocessor directive "include". An include statement is processed before the code is digested by the C++ compiler. The contents of the file called "iostream" are copied into the program before compilation.

The iostream is provided by the compiler vendor.

Line 12

Line 12 is blank. C++ ignores blank lines during compilation. Programmers may use blank lines to make a program more readable.

We warned you that this tutorial provides excruciating detail.

Lines 13 and 14

Lines 13 and 14 describe and specify the default namespace that should be assumed during the compilation process. A namespace is a conceptual mechanism that guides the compiler. Symbolic references identified by the compiler during the compilation process will be resolved by searching through the default namespace. In this particular example, the cout symbol is found in the default namespace.

Line 15

Refer to Line 12.

Lines 16 and 17

Lines 16 and 17 describe and identify the entry point for the program. In other words, the execution of the program starts here (line 17).

Contrary to popular opinion. line 17 is perfectly valid and will not generate a compiler warning or compiler error. Another version of line 17 might be:

void main()


Other incarnations also exist.

Editor's note: this is not a religious issue. Don't beat yourself up if your entry point doesn't look exactly like mine.


Lines 18 and 21

Lines 18 and 21 delimit the code in the main() function. C++ uses curly braces.

Lines 19 and 20

Lines 19 and 20 define and implement the only executable code in the entire program. Using the cout object, we write a message to the device commonly referred to as stdout. Also called Standard Out, this device is by default connected to console window. Most operating systems permit stdout to be redirected to any other output device such as a disk file or a printer.

working

This website uses cookies

As a user in the EEA, your approval is needed on a few things. To provide a better website experience, hubpages.com uses cookies (and other similar technologies) and may collect, process, and share personal data. Please choose which areas of our service you consent to our doing so.

For more information on managing or withdrawing consents and how we handle data, visit our Privacy Policy at: https://corp.maven.io/privacy-policy

Show Details
Necessary
HubPages Device IDThis is used to identify particular browsers or devices when the access the service, and is used for security reasons.
LoginThis is necessary to sign in to the HubPages Service.
Google RecaptchaThis is used to prevent bots and spam. (Privacy Policy)
AkismetThis is used to detect comment spam. (Privacy Policy)
HubPages Google AnalyticsThis is used to provide data on traffic to our website, all personally identifyable data is anonymized. (Privacy Policy)
HubPages Traffic PixelThis is used to collect data on traffic to articles and other pages on our site. Unless you are signed in to a HubPages account, all personally identifiable information is anonymized.
Amazon Web ServicesThis is a cloud services platform that we used to host our service. (Privacy Policy)
CloudflareThis is a cloud CDN service that we use to efficiently deliver files required for our service to operate such as javascript, cascading style sheets, images, and videos. (Privacy Policy)
Google Hosted LibrariesJavascript software libraries such as jQuery are loaded at endpoints on the googleapis.com or gstatic.com domains, for performance and efficiency reasons. (Privacy Policy)
Features
Google Custom SearchThis is feature allows you to search the site. (Privacy Policy)
Google MapsSome articles have Google Maps embedded in them. (Privacy Policy)
Google ChartsThis is used to display charts and graphs on articles and the author center. (Privacy Policy)
Google AdSense Host APIThis service allows you to sign up for or associate a Google AdSense account with HubPages, so that you can earn money from ads on your articles. No data is shared unless you engage with this feature. (Privacy Policy)
Google YouTubeSome articles have YouTube videos embedded in them. (Privacy Policy)
VimeoSome articles have Vimeo videos embedded in them. (Privacy Policy)
PaypalThis is used for a registered author who enrolls in the HubPages Earnings program and requests to be paid via PayPal. No data is shared with Paypal unless you engage with this feature. (Privacy Policy)
Facebook LoginYou can use this to streamline signing up for, or signing in to your Hubpages account. No data is shared with Facebook unless you engage with this feature. (Privacy Policy)
MavenThis supports the Maven widget and search functionality. (Privacy Policy)
Marketing
Google AdSenseThis is an ad network. (Privacy Policy)
Google DoubleClickGoogle provides ad serving technology and runs an ad network. (Privacy Policy)
Index ExchangeThis is an ad network. (Privacy Policy)
SovrnThis is an ad network. (Privacy Policy)
Facebook AdsThis is an ad network. (Privacy Policy)
Amazon Unified Ad MarketplaceThis is an ad network. (Privacy Policy)
AppNexusThis is an ad network. (Privacy Policy)
OpenxThis is an ad network. (Privacy Policy)
Rubicon ProjectThis is an ad network. (Privacy Policy)
TripleLiftThis is an ad network. (Privacy Policy)
Say MediaWe partner with Say Media to deliver ad campaigns on our sites. (Privacy Policy)
Remarketing PixelsWe may use remarketing pixels from advertising networks such as Google AdWords, Bing Ads, and Facebook in order to advertise the HubPages Service to people that have visited our sites.
Conversion Tracking PixelsWe may use conversion tracking pixels from advertising networks such as Google AdWords, Bing Ads, and Facebook in order to identify when an advertisement has successfully resulted in the desired action, such as signing up for the HubPages Service or publishing an article on the HubPages Service.
Statistics
Author Google AnalyticsThis is used to provide traffic data and reports to the authors of articles on the HubPages Service. (Privacy Policy)
ComscoreComScore is a media measurement and analytics company providing marketing data and analytics to enterprises, media and advertising agencies, and publishers. Non-consent will result in ComScore only processing obfuscated personal data. (Privacy Policy)
Amazon Tracking PixelSome articles display amazon products as part of the Amazon Affiliate program, this pixel provides traffic statistics for those products (Privacy Policy)
ClickscoThis is a data management platform studying reader behavior (Privacy Policy)