Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Free C/C++ IDE for Windows 7 that works with GCC [closed]

I've learned C and C++ in Borland's Turbo C++ IDE, the 16-Bit version with that old blue screen background, in which I started off building console programs for Windows. Now that Windows Vista and 7 doesn't support that IDE to be run in full-screen mode, I'm looking for such similar IDE (not necessarily from Borland), that comes with GCC, and doesn't need much learning to use if one has already worked with Turbo C. So is there any free GCC IDE that works with Windows 7? I'll not be using it for developing Windows applications, since I need it to practice on data structure console programs.

like image 920
Kushal Avatar asked Mar 25 '11 06:03

Kushal


People also ask

Which free IDE is best for C programming?

NetBeans It is one of the most used IDEs and can run on Windows, Linux, Mac OS X and Solaris. It is a free and open-source IDE that is written in Java.

Which IDE should I use for C programming?

NetBeans NetBeans, developed by Apache Software Foundation – Oracle Corporation, is also one of the most widely used IDE by the C/C++ developers. This free and open-source Integrated Development Environment allows you to create C and C++ applications with dynamic and static libraries.

Can GCC be used on Windows?

GCC (and GNU Toolchain) is currently available on all Unixes. They are also ported to Windows (by Cygwin, MinGW and MinGW-W64). GCC is also a cross-compiler, for producing executables on different platform.

Is Microsoft C compiler free?

Pelles C is a free development kit for Windows and Windows Mobile containing an optimizing C compiler, a macro assembler, a linker, a resource compiler, a message compiler, a make utility and installs builders for both Windows and Windows Mobile.


2 Answers

Turbo C++ is very old, and the concepts and philosophies of IDE design as (as well as the language C++ compilers are compiling) have developed much further since.

You might try Code::Blocks or Eclipse, but I wouldn't expect a transition as smooth as going to the next version of Turbo C++. (Which weren't as smooth either, BTW. The latest of that series, BCC 5.0 was quite different to the old DOS TC environments, and even that got abandoned later in favor of the very different C++ Builder IDE.)

BTW, does it have to be GCC? Visual C++ Express is free also, the VC compiler isn't worse than GCC, and the IDE is quite good.

like image 165
sbi Avatar answered Sep 17 '22 13:09

sbi


There are a few C++ IDEs with many features.

  1. Bloodshed Dev C++
  2. NetBeans C C++ IDE
  3. Eclipse CDT
  4. CodeBlocks

Also take a look at Cygwin which provides a linux like environment for Windows. If you are making console applications, using a good shell won't hurt.

like image 25
dheerosaur Avatar answered Sep 21 '22 13:09

dheerosaur