Suggestion for C IDE?

I used the gcc compiler on my unix machine. Now I have to work on a windowed machine. Is there a cool IDE or a simple C editor with a unix terminal like feel ( Black Screen and colored syntax on it :))

Which other editors / IDEs are as reliable as gcc for Windows? And what is your personal favorite. I would like to try a few of those in which I stick to one.

Thanks.

+4
source share
12 answers

If you are used to the Unix-y feel and are looking for a text editor, I would honestly avoid installing Visual Studio. This is a good IDE, but it is very heavy and perhaps a lot more than you ask. However, you can, of course, find that you like it, but keep in mind that you are potentially looking at a few hundred megabytes of download, 2 concerts for the full IIRC package.

Netbeans is good too, but quite heavy, and it's a little tricky to set up C and C ++ correctly, at least the last time I tried. This is a good alternative to the sun, however.

I would choose a lighter solution, such as Notepad ++, vim for Windows or my personal favorite, Geany - http://www.geany.org/

Getting black background and color syntax is possible mainly in any advanced text editor / IDE at the moment.

As for the compiler, MinGW is probably the best choice. Or you can compile the compiler and toolkit that comes with Visual Studio Express :)

+2
source

Visual Studio You can change fonts and colors as you wish. I used the same coloring scheme as Borland Turbo C ++, in 80 - yellow text on a blue background.

+13
source

VIM or Emacs. Although I personally will never use anything other than VS :)

+12
source

Cygwin is your friend. This gives you all the nice things you missed! :)

From the point of view of cool IDEs that go well with gcc on Cygwin, you should try Netbeans, Eclipse (with CDT) - they require a decent JVM. If you install Cygwin, there xemacs and gvim I think you can get for it ...

IMHO stick to Netbeans ...

+6
source

Zeus is a very good programmer editor. I just like the red keyboard emulation.

+4
source

The IIRC DOS command line prompt may change color. Have you tried Cygwin and MinGW ?

+3
source

mingw is the minimum Gnu value for Windows. Several packages have been added to it, but it has gcc and g++ . Sometimes a problem arises that some tool does not work exactly with executable files with .exe at the end or / and \\ in the outputs, but it is pretty decent. I can’t remember, but I think that there may be a reason why you cannot run gdb on Windows, but I could be wrong.

You can also get versions of most * nix text editors for Windows. gVim is available if you like vi or vim. Versions of vi and vim for the command line are also available, but do not always work correctly with modified windows. gVim and vim can highlight syntax if you specify them in the configuration file.

The last two versions of Windows had (or were free to download and install) PowerShell, which I suggest you get. It differs from the * nix shell in many ways, but often (not always) you can do without using it as a * nix shell. If you use pipes in it, you should know that he likes to turn everything into utf-16. The main thing that I found when using DOS as the best window is that you can resize the window more freely. However, you can still use old DOS windows.

Another alternative is cygwin, which, in addition to command line tools, provides an additional * nix environment for your programs. It includes libraries that make things more like you are running Linux in terms of your programs (for example, mimicking many Linux system calls). I used this for a long time, but at that time he had quite serious problems. I have heard a lot since then, but I have not had sufficient reason to try it again.

+3
source

Visual Studio will be your best bet. Others mentioned the free express version, which is likely to be sufficient for your needs. Visual Studio is not only an IDE, but also a Microsoft compiler. Since the choice of IDE is extensive, I will leave it to you to choose the one that suits you best.

The venerable GNU gcc compiler is also available on Windows using Cygwin or MinGW.

If you need something pretty sharp, the compiler is wise, you should check clang . For various reasons, this is a C compiler to keep an eye on. It is relatively new and was built with IDE support.

+2
source

When visual studio is already mentioned, I should mention Slickedit, not an IDE, but a fantastic editor.

http://www.slickedit.com

+1
source

I recommend codelite , a cross platform, free development environment for the GNU toolchain.

+1
source

Visual Studio 2010 has an express version that is free to download. link text

gcc via Cygwin is another amazing esp choice. if you want to use Emacs as an IDE link text .

Personally, I tend to use both. I am very inclined towards Visual Studio 2010, but sometimes compile with gcc to make sure that both compilers work the same way. It used to be profitable in the past (before VS2010), but I did not have much success in catching VS2010, making mistakes.

From the point of view of the general experience of integrated development, debugging, etc., it is difficult to surpass VS2010.

0
source

Net beans Dev C ++ code block code lite - good IDE

0
source

All Articles