Dev C++ - FREE C++ COMPILER

Pages: 1, 2, 3
free web hosting
Open Discussion > CONTRIBUTE > Computers > Programming Languages > C/C++ Programming

Dev C++ - FREE C++ COMPILER

switch
dawo has a good point, i find that vc++ is the best thing you can use. the debugger is great (although it has stopped working on my computer tongue.gif ) and the syntax highlighting and completion so easy to use and flawless as far as i can tell.

mind you, it took me a bit to get the money, and it really depends on how much you intend on doing, and wether you will use mfc or anything.

Reply

nooc
There is a free commandline version of visual c++, incase someone didn't know.
http://msdn.microsoft.com/visualc/vctoolkit2003/

Reply

dropout21
i also recently installed Dev-C++ and have tried learning it through the help files etc and when i talk to people about certain commands, they will not know what im talking about or tell me to use other ones, because of the different 'libraries/ reference files' so it has become confussing to learn. I also have Visual Studio 6 (downloaded for free) and it has Visual C++ in it but i cannot access help files and its a huge thing to install. I wish all languages had one set of commands (not one world wide set, just one function for the same thing), but i dunno, it might 'limit' abilities, so ill have to learn what i can for now.

Reply

nooc
If you follow the standards when writing c/c++ the you shouldn't have any compatibility issues unles you're doing something more complicated.
However, if you are talking about the compilers themselves then that's an entirely different thing. They are different.

Reply

Darth Vivi
I love Dev C++. If you don't want to spend money on a compiler, you can just download it for free. The file sizes for basic programs are huge, but the file sizes don't go up that much after a file is already created. (A much more complicated program will take nearly the same amount of memory as "Hello World")

Reply

osknockout
blink.gif That's nice guys, but I've noted that there's no
fstream library in DevC++ [or is that just me?]

-also that VC++ commandline release is available on
www.thefreecountry.com and you need at least a win2000 for it.

But DevC++ is good for many things like OpenGL
[NeHe's pages at gamedev.net are very useful]

But, you all should go to bloodshed.net to get the thing at it's source.

------------------------
Which is worse?
No commandline or
nothing to command?

-the Gatian excuse

Reply

Amorak
QUOTE
In my opinion Dev-Cpp is not so good... EXE files are very big (e.g. 'Hello world" has about 700kb)

Well I atualy got The hello world program out at 414kb a lot less than the 700kb people keep throwing out.
CODE

#include<iostream>

int main()
{
   std::cout << "hello world!" << std::endl;
   std::cin.get();
   return(0);
}


I defenetly think Dev-C++ is the best IDE out there and I atualy cant beleave its free considering the quality of it.

VC++ is to expensive and complicated.

Reply

CrimeWave
i used dev-c++ to but i couldn't execute my programs even in a simple hello world program he said there were 8 errors but now i'm using VSc++ and that's working great

Reply

osknockout
Hey CrimeWave, that's pretty mean actually.
You should have given it a bit more time,
it's pretty good.

Could you show the source code so that
the rest can try? I'm sure DevC++ isn't that bad.
...besides, it uses gcc as a compiler, what'd you expect? wink.gif

Reply

dexter
Now the thing about size is a result of all the extra information the program needs to work in with your OS... if you have a peek at the object code with the source still left in, you'll see that the code you wrote only takes up a small amount of space... so, once you write bigger programs, the size isn't going to increase by all that much.

Also, another problem could be is that you've got debugging info left inside... that also will make the executable a lot bigger...

Dev-C++ uses a gcc compiler, one that most linux distros also use. If it was a bad compiler, then most likely, it wouldn't get packaged with the linux distros... besides, Microsofts compiler doesn't even conform to the ANSI/ISO standards... tongue.gif

EDIT: I was testing speed ratings of a program the other day... and using dev-C++ my program was running faster than with one compiled under MSVC++... testing a doubly linked list class I wrote.

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Pages: 1, 2, 3
Recent Queries:-
  1. link ms dos with dev-c - 2.20 hr back. (1)
  2. dev c step-by-step debugging - 4.52 hr back. (1)
  3. how to compile a .rc file in dev c - 12.87 hr back. (1)
  4. dev c & not recognised - 24.98 hr back. (1)
  5. ms dev c - 26.91 hr back. (1)
  6. dev c fstream - 31.74 hr back. (1)
  7. deleting sort in dev c - 33.09 hr back. (1)
  8. dev c border downloads - 34.20 hr back. (1)
  9. ifstream c product name maximum - 39.41 hr back. (2)
  10. dev c creating a dos program - 40.36 hr back. (1)
  11. dev c studio iostream - 42.76 hr back. (1)
  12. latest dev c - 53.80 hr back. (1)
  13. dev c free - 57.62 hr back. (1)
  14. dev-c "rc file" - 75.43 hr back. (1)
Similar Topics

Keywords : dev, c, c, compiler

  1. Compiler
    (6)
  2. Resource Compiler
    Resource Compiler (0)
    Is there a good Resource Compiler for Win32 outhere which is freeware or opensource perhaps? im
    using the Visual C++ but it puts to much extra code in the rc file.. i always end up deleting those
    extra text... is there any?....
  3. Better Free C Compiler
    (4)
    I am trying to solve some strange problems - the problems are the sort where you have 2 different
    sets of code that do the exact same thing differently - but one solution works and the other
    produces strange results (very strange since the debugger shows they both do the same thing). Some
    problems of this nature remain and I think it has something to do with the compiler. I'm using
    gcc 3.3.4 right now, am working on installing 4.0.0 but I doubt it will help seeing how the only
    changes appear to be to C++ and java, not C. Is there a free compiler out there that bet....
  4. Can A Windows Compiler Compile For Linux?
    (6)
    A friend of me, is working on a mod for a tournament where I am a co admin off... The problem is...
    My friend uses Windows. Are there any Windows programs that can ccompile .so's to use on a linux
    server / box? Thanks for any reply's....
  5. Creating a Compiler
    The Nightmare of a Comp Science Students (6)
    I got this assignment from my college: To create a working Compiler or Interpreter You need to
    design your own Language And build the compiler using Java or preferably C. This is one scary
    nightmare...dang....I wish I can just wake me up... but I can't this is not a nightmare. T_T
    Btw, does anyone here has any experience on creating compiler or interpreter using C? I am designing
    a language which is the combination of C and PHP. And I need help.....
  6. Free C++ Visual Compiler
    (18)
    Hello guys! So far, I only can complie files with the Borland compiler that work only in MS-DOS
    mode. As you guys know, MS-DOS is ancient....some people have never even heard about
    it!!!! Yeah, that's the truth...but anywayz, do you guys have a compiler that
    can do the same as Microsoft Visual C++ Compiler that is free? I am not looking for illegal stuff or
    anything. I am looking for a fully legimate program that can do almost exactly the same as Microsoft
    Visual C++. I really want to know, and don't worry., I am not posting this for fun. I....

    1. Looking for dev, c, c, compiler

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for dev, c, c, compiler

*MORE FROM TRAP17.COM*
advertisement



Dev C++ - FREE C++ COMPILER



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE