Hello all,
I've encountered a problem when trying to build a project so that it will compile. I downloaded Code::Blocks earlier today so that I could start learning C++ (so far I know next to nothing about the language, but I hope to get better!), so I'm not sure if I need anything else. I also don't know if the code is just faulty or not (I don't think it is...I copied it from somewhere, but you never can be too sure). The error message I'm getting says this:
"HelloWorldApp - Debug" uses an invalid compiler [YOUR ANSWER IS ALREADY THERE. SEARCH THE FORUMS!]. Skipping...
Nothing to be done.
This is the code I'm using:
/*
* Hello World Example
*/
#Include <iostream>
int main(void)
{
std::cout << "Hello World!" << std::endl;
return 0;
}
Like I said, I really don't know much about this language yet. I just found a few sites that I hope will help me though, so I should know more soon!
I'm running Windows XP by the way.