Jump to content

Writing C programs on my personal computer

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
4 replies to this topic

#1
circuz_phreak

circuz_phreak

    Newbie

  • Members
  • Pip
  • 5 posts
I will be writing C programs for a class i'm taking and the easiest route is to connect to the server via SSH secure shell in Windows, or simply through my linux terminal (because I run a dual boot system) and write, compile and test on a Unix machine. Although I do enjoy syntax highlighting provided by text editors. My preferred one at the moment is TextPad for windows on my home pc. It contains a C syntax file as well. Can I simply install a compiler and be able to not only write, but compile and run C programs? Can anyone help me out with links where I could find a C compiler, or a detailed how to in order to get the compile and run commands set up afterwards? Thanks!

#2
Cynic

Cynic

    Newbie

  • Members
  • Pip
  • 4 posts
I have yet to see a Linux distro that does not include gcc.

If you have windows and want to develop under windows, there is OpenWatcom and MS Visual Studio Express for free options.

#3
Victor

Victor

    Programmer

  • Members
  • PipPipPipPip
  • 116 posts
Bloodshed's Dev-Cpp is also a very good environment, compiles C and C++

#4
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
You can also just get the MinGW compiler, which is a port of GCC to windows.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#5
v0id

v0id

    Retired

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,936 posts
I'll second WingedPanther's statement.