Question about Bloodshev Dev-C++

NuLL

New Member
Ok, I just started getting back into programming, and I decided what better way than to learn C++. Now, I have no prior knowledge with C or C++, as I gave up before I actually learned anything past "cout". However, my question isn't about the C++ coding itself, more as in the Compiler I'm using, Bloodshev Dev-C++. I wrote the code for the basic "Hello World" thing, and when I go to compile, it gives me this error:

Line 2 <filename> unable to run program file.

This is the code I'm using, and I'm pretty sure there is nothing wrong with it, as I've run many different source codes on this compiler, all of them giving the same error message.


// blah

#include <iostream.h>

int main ()
{
cout << "Hello World!";
return 0;
}


I'm pretty sure it has something to do with the actual compiling program of Dev...if anyone has any ideas, I would appreciate it greatly. Thanks.
 
Probably in compiler options at paths it's missing a folder in which that program resides.
 
Back
Top