I just started C++ today and im using Dev-C++ as a compiler.
Ive tried many examples, including the ones in this web's tutorial, but when i compile and run them the programs do not show on the screen,
i am using cin.get(); so i think the problem is that i need to use some function like "Show on Screen"
well, here is the example i am using:

Code:
#include <iostream>

using namespace std;

int main()
{
  cout<<"HEY, you, I'm alive! Oh, and Hello World!\n";
  cin.get();
}
Please change the code as needed to make the window show
Thank you in advance