gab00n's probably right...Try these steps and see if it helps...You may be leaving out a part or doing one wrong:
1. Boot up Dev-C++
2. Choose file > new > source file
3. Then copy and paste the following code exactly:
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "Hello World\n\n";
system("PAUSE");
return EXIT_SUCCESS;
}
4. Now go to execute (on the top menu bar) > compile & run
5. Your program should compile in a couple seconds then run
Hope that helps-
::-Chase-::