Dev-c++ Same Update Glitch
Hi!
I am using Dev-C++ and when I am trying to compile a program in it, it is showing many errors. All the settings seems to be right. Can I compile a program including header files like conio.h and iostream.h and using namespace std in Dev-C++? If not please suggest a good compiler in which I can do a program containing the header files mentioned above. I tried doing the same program in turbo C++ and microsoft visual studio 2010 express and it is working properly. If this problem in Dev-C++ is due to any settings that has to be done, please tell. I have installed Dev-C++ correctly.
Someone, please help me out!:confused:
- 5 Contributors
- forum 13 Replies
- 2,068 Views
- 2 Days Discussion Span
- commentLatest Postby Stefano MtangooLatest Post
Recommended Answers
If you must use Dev C, try the following: 1. Click to Tools Compiler Options. Click to Settings Code Generation. Change the value of Language Standard (-std) to ISO C11. I haven’t used Dev C for years (when one client required it). The double-hat glitch is caused when two people in different locations that are logged on to the same account try to wear two different hats at the same time. Due to a recent update you can do.
No wonder you're confused.
[QUOTE=confused_one;]
I am using Dev-C++ and when I am trying to compile a program in it, it is showing many errors. All the settings seems to be right. Can I compile a program including header files like conio.h and iostream.h and using namespace std in Dev-C++? …
LOL! @WaltP: Pretty good timing for this thread! Don't you think?
Yet another example of 'I compile this with DevC++ and it doesn't work, but it works with other IDEs like .'.
@OP: I agree with both posters. Stick to one generation of C++ code, that is, the current standard, …
Jump to PostDev-c++ Same Update Glitch 2017
All 13 Replies
WaltP2,905
Dev-c++ Same Update Glitch Free
No wonder you're confused.
I am using Dev-C++ and when I am trying to compile a program in it, it is showing many errors. All the settings seems to be right. Can I compile a program including header files like conio.h and iostream.h and using namespace std in Dev-C++?
You are using 3 different eras of programming
- 1980's - conio.h from non-Standard C programming. Suggestion - remove it and all functions used from it.
- Pre-standard C++ using iostream.h -- again old and substandard. Upgrade to iostream, no extension.
- namespace std for use with today's standard headers with no extension.
Decide what era you want to compile and fix the code to that standard.