I'm new to C++ and i'm going through the tutorials on this site, however the first piece of code it gives me to start learning doesn't work.

#include <iostream.h>
int main()
{
cout<<"HEY, you, I'm alive! Oh, and Hello World!";
cin.get();
return 0;
}

It keeps on returning Unable to run program. I'm using Dev-C++ 5

can anyone tell me whats going on?