I was delighted to find Code:Blocks recently. After I downloaded and installed it on my Windows XP computer, I discovered that the program seems to take forever to compile a simple one-line null program, which I list below. After I issue the Build command, I see the curser blink but nothing else happens. If I hit Run, I am told that the corresponding .exe file has not been built yet. So I tell it to proceed to build (compile), but the curser just keeps blinking on and on and I see no error message. I think I've installed the 8.02 setup.exe file correctly. Your help in this matter will be much appreciated.
Thank you very much.
Julian Loui
Virginia Beach, VA
---------------------------
#include <iostream>
using namespace std;
main()
{
cout << "This is a null program.";
cout " \n";
}