0

I want to learn how C is interpreted,

anyone knows where to download it?

compiler
  • 4,143
  • 9
  • 36
  • 40
  • 4
    C is not interpreted, it is compiled. C is not downloaded, it is specified. Various implementations of a compiler that implements the specification may be downloaded. – abelenky Mar 05 '11 at 02:27
  • 2
    http://www.bing.com/search?q=open+source+c+compiler&src=IE-SearchBox&FORM=IE8SRC – Mark Hall Mar 05 '11 at 02:27
  • 1
    @mark: ditto [google.com](http://www.google.com.au/search?q=open+source+c+compiler) – Mac Mar 05 '11 at 02:31
  • 1
    @abelenky – Actually, C is translated and then executed. [Interpreters](http://stackoverflow.com/questions/584714/is-there-an-interpreter-for-c) exist. – aaz Mar 05 '11 at 02:37
  • 2
    Ironic user name you have there. – Jim Balter Mar 05 '11 at 08:35

4 Answers4

2

http://www.thefreecountry.com/compilers/cpp.shtml

I found that in about 10 seconds using Google. You can too.

dthorpe
  • 35,318
  • 5
  • 75
  • 119
2

A good basic compiler suitable for getting an intro to the subject and including sources is tinyc. It is capable of being used in a similar manner as an interpreter, too (unlike GCC et al).

Mac
  • 14,615
  • 9
  • 62
  • 80
1

http://gcc.gnu.org/releases.html

Tuomas Pelkonen
  • 7,783
  • 2
  • 31
  • 32
0

Try this:

http://en.wikiversity.org/wiki/C

and this:

http://gcc.gnu.org/

Bobby
  • 11,419
  • 5
  • 44
  • 69
jpstrikesback
  • 2,300
  • 14
  • 18