The Console Of Dev C++ Doesn't Work

Posted on by

Dev-C is really old and the debugger is full of bugs. If you're sure the problem isn't with your code, then I'm assuming you've tried the basics, like restarting Dev-C and restarting the computer? If that doesn't work, try reinstalling Dev-C. It only takes a couple seconds to install it. The yellow arrow indicates the next statement to execute. On one of your screenshots, it's clearly visible that you've put a breakpoint on the line cout debugger stopped there, before executing that line (notice the yellow arrow). This is why nothing is printed on your console window (yet). Jan 08, 2018 How to Reset Dev C default Settings. Restore default settings in Dev C. Dev C plus plus is an IDE for writing programs in C and C. Learn how to reset default settings in Dev C.

  1. Dev C++ For Windows 10
  2. The Console Of Dev C Doesn't Work On Tv
The Console Of Dev C++ Doesn

Dev-C++ v 4.9.9.2 IDE
When I compile and run my program as a console project, a window flashes very briefly on the screen and disappears. The compile log says compilation was successful and execution terminated.

How to I keep the window (my output window?) from disappearing?

  • 7 Contributors
  • forum 13 Replies
  • 3,654 Views
  • 8 Years Discussion Span
  • commentLatest Postby Mohit_12Latest Post

Dev C++ For Windows 10

Ancient Dragon5,243

The Console Of Dev C Doesn't Work On Tv

You have to add a line just before the end of main() to stop the program from closing. Most people call getch() or c++ cin.get(), which is just waiting for keyboard entry.