My C++ Tutorials - Hello World
Hello World:
Your first real program, while simple will show you a great deal. You will get a great understanding of the C++ syntax.
#include "stdafx.h"
#include "iostream.h"
int main(int argc, char* argv[])
{
printf("Hello World!\n");
cout << "Hello out there!!";
return 0;
}