• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

C compiler

 
Ranch Hand
Posts: 315
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My class need us to get a C compiler and an editor.
Any recommendation on the window base software which I can use?
Thanks for your help!

J
 
Ranch Hand
Posts: 214
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Editor:- Just use a text editor. Most of them (ultraedit/textpad/vim) will have syntax highlighting for the C syntax.

Compiler - Microsoft have released vc++2003 as a free download -
http://msdn.microsoft.com/visualc/vctoolkit2003/

I'd probably use that. You will need to download the platform SDK in addition to access to some of the tools (nmake) and libraries for doing windows specific things.
 
Jackie Wang
Ranch Hand
Posts: 315
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanks so much lewin,
is VC2003 also an editor?

Or it's just compiler and I need another text editor to edit c?
 
Ranch Hand
Posts: 724
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I suppose not, editor is .NET Studio.
 
Ranch Hand
Posts: 200
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I recommend Dev C++. A compact and open source IDE. Here is the link
www.bloodshed.net/devcpp.html
 
Ranch Hand
Posts: 220
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I recommend the openwatcom compiler
www.openwatcom.org and I use editplus text editor, though I'd have loved to use emacs on the linux platform.
 
Ranch Hand
Posts: 60
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I use the Borland free command line tools: http://www.winprog.org/tutorial/bcpp.html

in conjunction with TextPad:
http://www.textpad.com

The upside of TextPad is that in addition to providing syntax highlighting, you can also compile and run programs from within it. Also, you can use it with other languages such as Java, Python and Perl.

The downside is that it costs $40.
 
Bartender
Posts: 1160
20
Mac OS X IntelliJ IDE Oracle Spring VI Editor Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
".NET Studio." - a open source editor for .NET is SharpDevelop.
I'm guessing that becasue .NET supports C++, it should then support C. You may be able to write C code and complie with the .NET C++ tools. (Could be wrong here!)

IDE is for Windows platforms only
 
Peter Rooke
Bartender
Posts: 1160
20
Mac OS X IntelliJ IDE Oracle Spring VI Editor Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Anyway if your doing C, you might do well to use the VIM editor.
 
reply
    Bookmark Topic Watch Topic
  • New Topic