Mark Pearl

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);
}


blog comments powered by Disqus

Want to get my personal insights on what I learn as I learn it? Subscribe now!


/