Okay… so I know this is really simple stuff – but sometimes you just need a sample hello world. Here is the c++ version for VS2008.
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
system("PAUSE");
return(0);
}