Wednesday, September 15, 2010

Hello World C++ Program

A simple program to Print Hello World

Using C++ programming language.

#include <iostream.h>
#include <conio.h>

void main()
{
cout << "Hello World"; //This is how you insert comments in C++
getch(); //This is used to wait for the user to press a key before output window closes

}

0 comments:

Post a Comment