I've been trying to get C++ to work, but it seems like every version I get doesn't work for the tutorials..
I got
DevC++ , but it didn't work right. Oh, I've been trying them with this program:
#include <iostream.h>
int main()
{
cout<<"Hello World!";
return 0;
}
So anyway, I've tried this on DevC++, DJGPP, Borland C++ and they all give me errors. DJGPP can't find the file no matter what I do (even with a full #include <c:\djgpp\include\iostream.h>, Borland was just being retarded about everything, and Dev worked, but the file didn't run
Any ideas..?