I´ve used both to compile and run my programs, and everything worked fine until yesterday. Now all I get is the black Dos screen with no output, just a blank, black square. Reinstalled both IDEs but the problem continues. Any ideas please?
I´ve used both to compile and run my programs, and everything worked fine until yesterday. Now all I get is the black Dos screen with no output, just a blank, black square. Reinstalled both IDEs but the problem continues. Any ideas please?
Is it just DevC++/CodeBlock, or everything else Command-Prompt based?
Can you open Command Prompt?
FWIK, DevC++/CodeBlock use GNU C++ compiler (and the black box you see is actually calling the compiler), check that it is installed properly.
OTOH - under Windows, there is just one C/C++ IDE. Everything else is miles behind, especially for debugging.
Yes, everything works as expected. I tried executing a very simple Hello World program like #include <iostream> using namespace std; int main(){cout << "Hello World" << endl; return 0; }
When I execute the program the DOS window appears, but no text is printed in it?