Thread: C Editor & Compiler all-in-one?

  1. #1
    Registered User
    Join Date
    Oct 2007
    Posts
    38

    C Editor & Compiler all-in-one?

    Hi, sorry if this isnt related to any coding...
    Im just looking for a program (preferably a freeware) that would act as an editor and would also provide compile and run features. At the moment im using EditPlus for coding, which is great, but to compile it i have to run command prompt, find where the file is located, tell my compiler (Borland) its address and only then compile and run it.
    I have this Dev-C++ software, which seems to have all the features i want, but when it catches errors while compiling it doesnt describe them well enough...
    Any suggestions are much appreciated

  2. #2
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    Dev-C++, Code::Blocks, Microsoft Visual Studio Express are all free in terms of needing to be paid for, and do what you ask for (at least as well a Borland). The term freeware probably don't quite apply to any of the products, as the first two are "GPL" (Gnu Public License) and the latter is some sort of MS license. But from a "pay for" standpoint, they are all free.

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  3. #3
    Registered User kryptkat's Avatar
    Join Date
    Dec 2002
    Posts
    638
    I have this Dev-C++ software, which seems to have all the features i want, but when it catches errors while compiling it doesnt describe them well enough...
    have the same problem with dev c++ .... most of the time it only takes a few minutes to figure out what the error is meow .... sometimes longer. I would say that is the down side of dev c++.

    One thing borland once gave was a WYSIYG dialog editor with a nice gui. But it did not really contain everything needed for win api progs.

  4. #4
    and the hat of sweating
    Join Date
    Aug 2007
    Location
    Toronto, ON
    Posts
    3,545
    I've never used the first two, but I use VC++ 2005 at work (and the free express version at home) and debugging is simple. If you get a compile error, press F6 and it takes you right to the line where the error is. If you don't know what the error means, it always has a code like "C4329" at the beginning, so if you do a search for that code on google, you'll find plenty of info about it.

  5. #5
    Registered User
    Join Date
    Oct 2007
    Posts
    38
    Thanx. Will check it out

  6. #6
    abyss - deep C
    Join Date
    Oct 2007
    Posts
    46
    Hi Folks,

    Check this site
    http://www.objectcentral.com/

    You will find VIDE, an editor (IDE) for C, C++

    The site explains on how to install and configure the same for Borland C (which I am currently using).

    Cheers
    maverix

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. added start menu crashes game
    By avgprogamerjoe in forum Game Programming
    Replies: 6
    Last Post: 08-29-2007, 01:30 PM
  2. Compiler Paths...
    By Cobra in forum C++ Programming
    Replies: 5
    Last Post: 09-26-2006, 04:04 AM
  3. C Compiler and stuff
    By pal1ndr0me in forum C Programming
    Replies: 10
    Last Post: 07-21-2006, 11:07 AM
  4. I can't get this new compiler to work.
    By Loduwijk in forum C++ Programming
    Replies: 7
    Last Post: 03-29-2006, 06:42 AM
  5. how to call a compiler?
    By castlelight in forum C Programming
    Replies: 3
    Last Post: 11-22-2005, 11:28 AM