Hi, I'm a total beginner in C++. I am using Bloodshed Dev C-++ 4.01 Compiler. Now Im trying to get Hello World program to run, it compiles successfully but it won't Run. The command prompt blinks for one second and it disappears. Basically, it wont execute. I've enlist the help of Mathgirl but shes not too familiar with the compiler Im using, I've looked through this thread
I followed it but it wont work.


It's from the book teach Yourself C++ in 24 hours, although It'll take more than that.

This is the program I did:

#include <iostream>

int main()
{
std::cout << "Hello World!\n";
return 0;
}


It compiles successfully but like I said before it won't execute, I can't see the result Hello World. How do I get this simple program up and running? I appreciate any help.