I have an application in Code :: Blocks, and this is a simple, traditional Hello, World program.
#include <iostream> int main() { std::cout << "Hello, World!" << std::endl; }
The program builds and executes, but the output is not displayed. I checked the project properties in Code :: Blocks and was definitely configured for a console application. Any suggestions regarding the problem?
Edit: Exit only in the IDE. When launched, a separately executable executable works exactly as expected.
Puppy source share