i have a problem with my dev c++ whenever i write a source code firstly it shows output then i made amendments in it after that it is not showing me any output. . .
can anyone tell me what is the actual problem???

I've found that generally, the correct answer is don't use Dev-C because it's a steaming pile of bleep but this would also work. I tutor students that are required to use this compiler and this problem happens with great frequency, even when not using the C: directory as Jon indicated above. Hey, my operation system is windows 10 and im using dev-c 5.11. I just created a simple program with C language but i cant compile it.Also can't run it because it is not compiled. Also Compile & Run button greyed out too.

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. 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.

  • 3 Contributors
  • forum 2 Replies
  • 1,763 Views
  • 4 Hours Discussion Span
  • commentLatest Postby rubbermanLatest Post

Schol-R-LEA1,117

Can you clarify what you mean, please? Is it that changing the source code leads to it failing to have any output at all, or is it that the output window is closing as soon as you finish the input? /descargar-app-voloco-auto-tune.html.

I ask this because the latter problem is a known bug in the older Bloodshed Dev-C++, one which was never patched in the original. Unfortunately, that version of Dev-C++ hasn't been maintained in a decade, so not only was the bug never fixed, the IDE and the compiler bundled with it are long out of date. The solution is to instead get a newer IDE such as the '>Orwell Dev-C++ fork, '>Code::Blocks or '>Eclipse Luna, each of which avoids this particular bug.

If it is a problem with your code, however, then we would need to see at least the part of the program that has been changed, and a more detailed description of the change and how the program is misbehaving.

Edited by Schol-R-LEA

hello altogether,
my name is Wolfram Pagels, Berlin, Germany
my status is :retired but enthusiastic c++-fan;

I use Dev-C++ since 3 month ago; in the 70th I programmed in Fortran;
after a long break I enjoy to learn c++11;

e.g.: the day before yesterday I got the following message from Dev-C++:

My second question to you: * h o w to enable (these) options at my installed and running actual mingw compiler as part of Dev-C++ IDE ?

Thank you in advance for your time,

yours sincerely

Edited by mike_2000_17: Removed email address. Fixed formatting.
  • 4 Contributors
  • forum 3 Replies
  • 3,473 Views
  • 23 Hours Discussion Span
  • commentLatest Postby Ancient DragonLatest Post

mike_2000_172,669

How To Use Dev C++ Compiler

Well, the answer to your problem (but not to your question) is to change your IDE. Dev-C++ is far too old to support C++11. The MinGW GCC version that ships with Dev-C++ is version 3.4.2, which is really old. Decent support for C++11 starts roughly from 4.6.0, but since it is still experimental, the newer the better. Currently, you can get 4.7.1 version through '>TDM-GCC ports. I recommend switching to '>CodeBlocks, which you can download as an installer that includes TDM-GCC 4.7.1. That should allow you to have decent C++11 support.

Dev c show compile log in mac

Dev C++ Show Compile Logs

As for setting compiler options, you typically have to navigate the 'Build Configuration' or 'Project Properties' or similar panels. Usually, you will find a place to put 'custom compiler options' where you can place the exact command-line compiler option (like -std=c++11), that is, if you can't find a checkbox for the particular option you need.