CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 10 of 10
  1. #1
    Join Date
    Dec 2003
    Posts
    47

    Any C++ Complier you guy recommend besides MS Visual Studio?

    Hi
    Since, I am brushing up my C++ skills, definitely want to download a decent compiler. I don't want Microsoft Visual Studio though....

    Please let me know.

    Many Thanks,
    ------------
    I.B.M... I Blame Microsoft

  2. #2
    Join Date
    Aug 1999
    Location
    <Classified>
    Posts
    6,882

    Re: Any C++ Complier you guy recommend besides MS Visual Studio?

    Borland C++ Builder.
    Intel.
    Last edited by Krishnaa; August 14th, 2006 at 03:20 PM.
    Regards,
    Ramkrishna Pawar

  3. #3
    Join Date
    Dec 2003
    Posts
    47

    Re: Any C++ Complier you guy recommend besides MS Visual Studio?

    is C++Builder 5.5 ok? Just to test some code...

    Please let me know..

    Thanks,

    Sincerely,
    Karen
    ------------
    I.B.M... I Blame Microsoft

  4. #4
    Join Date
    Apr 1999
    Posts
    27,449

    Re: Any C++ Complier you guy recommend besides MS Visual Studio?

    Quote Originally Posted by doglin
    Hi
    Since, I am brushing up my C++ skills, definitely want to download a decent compiler. I don't want Microsoft Visual Studio though....
    You can get Dev-C++.

    www.bloodshed.net

    Internally it uses the gcc/MingW compiler, which is one of the best out there when it comes to supporting the ANSI standard.

    Regards,

    Paul McKenzie

  5. #5
    Join Date
    Aug 1999
    Location
    <Classified>
    Posts
    6,882

    Re: Any C++ Complier you guy recommend besides MS Visual Studio?

    Quote Originally Posted by doglin
    is C++Builder 5.5 ok?
    I think so, lot of people use it.
    Regards,
    Ramkrishna Pawar

  6. #6
    Join Date
    May 2003
    Posts
    424

    Re: Any C++ Complier you guy recommend besides MS Visual Studio?

    I use Code::Blocks with gcc/MingW.

  7. #7
    Join Date
    Dec 2003
    Location
    Syracuse, NY
    Posts
    400

    Re: Any C++ Complier you guy recommend besides MS Visual Studio?

    I also like Code::Blocks(with MingW/GCC) I like the editor much much better than Dev C++(both are free). I hardly use it though because I have VS 2005 and VC++ 2003. I used to use it before I got VS or VC++.
    "Windows programming is like going to the dentist: You know it's good for you, but no one likes doing it."
    - Andre LaMothe

    DLL For Beginners(UPDATED)
    Please use CODE tags
    Rate me if I've helped.

  8. #8
    Join Date
    Feb 2005
    Location
    Normandy in France
    Posts
    4,590

    Re: Any C++ Complier you guy recommend besides MS Visual Studio?

    Digital Mars Compiler is quite good too (it compiles & links fast).
    But, MinGW is the best for ISO compliance.

    Quote Originally Posted by doglin
    Just to test some code...
    If you hope that it'll say whether your code is ill-formed, BC++ is not bad but won't always work.
    MinGW will work almost perfectly.
    But it won't not say whether your code has undefined behavior.... You have to know the standard for that.
    "inherit to be reused by code that uses the base class, not to reuse base class code", Sutter and Alexandrescu, C++ Coding Standards.
    Club of lovers of the C++ typecasts cute syntax: Only recorded member.

    Out of memory happens! Handle it properly!
    Say no to g_new()!

  9. #9
    Join Date
    Apr 2006
    Location
    Nr Cambridge, UK
    Posts
    263

    Re: Any C++ Complier you guy recommend besides MS Visual Studio?

    Visual C++ 2005 (Express edition) is one of the best free IDE/compiler combinations http://msdn.microsoft.com/vstudio/ex...c/default.aspx. With it being free, it's hard to knock it!

  10. #10
    Join Date
    Oct 2000
    Location
    London, England
    Posts
    4,773

    Re: Any C++ Complier you guy recommend besides MS Visual Studio?

    GNU is the most widely available if you are going to compile on different platforms.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured