6.The EXE files created are huge. What can i do to reduce the size?
If you want to reduce your exe file size from 330 Ko to 12 Ko forexample, go to compiler options. Then click on the Linker pageand uncheck 'Generate debug information'. This willremove debugging information (if you want to debug, uncheck it).You can also click on Optimization page and check 'Bestoptimization'.

7.Under Windows NT, every time i launch Dev-C++ i get the message“Failed to set data for”
The is because you are not in Administrator mode, and Dev-C++tries to write to the registry. To get rid of the error message,log on as the Administrator, or uncheck the file associationoptions in Environment options, Misc. Sheet.

8.when I try to compile I get: ld: cannot open crt2. o: No suchfile or directory. What can i do ?
Go to Compiler options, and check if the Lib directory iscorrectly set to:
C:Dev-C++Lib
(for a default installation).

If this stilldoesn't work, try copying the file Libcrt2.o to your Dev-C++'sBin directory.

9.How can i use the OpenGL library and others ?
All the libraries that comes with Mingw reside in the Libdirectory. They are all named in the following way: lib*.a
To link a library with your project, just add in Project options,Further option files :
-lopengl32
This is for including the libopengl32.a library. To add any otherlibrary, just follow the same syntax:
Type -l (L in lowercase) plus the base name of the library(filename without 'lib' and the '.a'extension).

10.When i compile a file that contains references to Windowsfilename (like <Mydirmyfile.h>), i get a 'unrecognizedescape sequence' message ?

The Mingw compilerunderstands paths in the Unix style (/mydir/myfile.h). Tryreplacing the in the filename by /

11.Is there any GUI library or packages available for Dev-C++ ?

You can downloadextra packages for Dev-C++ at http://www.bloodshed.net/dev/

12.I am having problems using Borland specific functions such asclrscr()

Native instruments reaktor vst download

Include conio.h toyour source, and add C:Dev-C++Libconio.o to 'FurtherObject Files' in Project Options (where C:Dev-C++ is whereyou installed Dev-C++)

13.The toolbars icons are showing incorrectly.

On some screenresolutions, toolbars icons may show up incorrectly. You shouldtry changing your screen resolution, or disable toolbars from theView menu in Dev-C++

14. It seems i've found a problem/bug thatis not specified here. What should i do ?

Dev C Not Compiling Full

Doesn

First, you shouldtry doing a 'Check for Dev-C++ update' (in Help menu)to know if a new version has come that may correct this problem.If there are no new version or the problem wasn't fixed thenplease send an email describing the bug to : [email protected]

15.When attempting to create a setup program, i get the error'File BinSetup.exe not found'.
If you arewilling to use the Setup Creator feature of Dev-C++, you need to download and install thisfile
16.How to use assembly with Dev-C++ ?
Massive win vst crack. The assembler uses AT&T (notIntel). Here's an example of such a syntax :
// 2 global variables
int AdrIO ;
static char ValIO ;
void MyFunction(.....)
{
__asm('mov %dx,_AdrIO') ; // loading 16 bits register
__asm('mov %al,_ValIO') ; // loading 8 bits register
/*
Don't forget the underscore _ before each global variable names !
*/
__asm('mov %dx,%ax') ; // AX --> DX
}
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:

Recommended Answers

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++? …
Jump to Post
LOL! @WaltP: Pretty good timing for this thread! Don't you think?

Dev C++ Download

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 Post

All 13 Replies

WaltP2,905

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
Decide what era you want to compile and fix the code to that standard.
confused_one commented: thank you sir for your suggestion+0