This is probably a stupid question, but I've been wondering about this for a while. Does C (or any other low-level language, for that matter) even have source, or is the compiler the part that "does all the work", including parsing? If so, couldn't different compilers have different C dialects? Where does the stdlib factor into this? I would really like to know how this works.

link|improve this question

10  
"Does C (or any other low-level language, for that matter) even have source"? You are kidding, right? Did you read this yet? en.wikipedia.org/wiki/C_(programming_language) If you did not read this, please explain why you didn't read this. – S.Lott Feb 24 '11 at 1:28
13  
Can someone send me the source code for English? – EboMike Feb 24 '11 at 1:30
91  
Hey, thanks for patronizing me. I really appreciate it. – Hypercube Feb 24 '11 at 1:32
9  
interesting question. I never thought about that before. I guess Java would be an example of a "closed" language, since it's owned by Oracle. But if a language is just a standard, like the people below mention, then how can Oracle sue Google over using an implementation of their standard? Thanks for asking this. Nice food for thought. – user520621 Feb 24 '11 at 1:49
12  
There's some pretty low comprehension here, coupled with arrogance, by some of the commenters. The meaning of the question is pretty clear -- the OP even spelled out his/her conceptual confusion. – Jim Balter Feb 24 '11 at 11:39
show 12 more comments
feedback

9 Answers

up vote 99 down vote accepted

The C language is not a piece of software but a defined standard, so one wouldn't say that it's open-source, but rather that it's an open standard.

There are a gazillion different compilers for C however, and many of those are indeed open-source. The most notable example is GCC's C compiler, which is all under the GNU General Public License (GPL), an open-source license.

There are more options. Watcom is open-source, for instance. There is no shortage of open-source C compilers, but without a doubt the most widespread one, at least in the non-Windows world, is GCC.

For Windows, your best bet is probably Watcom or GCC by using Cygwin or MinGW.

link|improve this answer
6  
I'm not so sure I would say it's an open standard. You can find drafts of revisions online, but AFAIK you must pay to get the actual C99 standard. – user470379 Feb 24 '11 at 1:31
2  
Like I said, you must pay to get a copy of the C99 standard from ANSI or ISO. Technically, according to the IETF and some people's definitions that does not disqualify it from being an open standard, but some would argue that being required to pay for it makes it not an open standard. – user470379 Feb 24 '11 at 1:46
5  
Clear, concise answer to a perfect example of why there are no stupid questions. I'd upvote this 10 times if I could. – Cheezmeister Feb 24 '11 at 1:47
3  
@user470379: It's an Open standard in that there is no fee or royalty on implementations; only on the written standard document. – greyfade Feb 24 '11 at 4:07
4  
@user470379 "some would argue that being required to pay for it makes it not an open standard" -- None who actually had a clue. The standard is published and there are no restrictions on communicating its content (as we do here on SO all the time) beyond violation of copyright and no restrictions on who may implement the standard. That one must pay for the document is completely and utterly irrelevant. – Jim Balter Feb 24 '11 at 12:05
show 5 more comments
feedback

C is a standard which specifies how C compilers should generate programs.
C itself doesn't have any source code, just like a musical note doesn't have any plastic.

Some C compilers, such as GCC, are open source.

link|improve this answer
4  
good answer, although the musical note / plastic analogy was a bit surreal. :-) – Spudley Feb 24 '11 at 13:22
feedback

C is just a language, and a standardised one at that, too. It pretty much is the compiler that "does all the work". Different compilers did have different dialects; before the the C99 ANSI standard, you had things like Borland C and other competing compilers, that implemented the C language in their own fantastic ways.

stdlib is just an agreed-upon collection of standard libraries that are required to be present in any ANSI C implementation.

link|improve this answer
feedback

To add on to the other great answers:

Regarding different dialects -- there are some additional features added to C that are compiler specific. You can provide the command line flag -std=... to gcc to specify the C standard that you want to use, each has slight variations/additions to syntax, the most common is probably c99.

Each compiler tends to implement a few different extras, for example, typeof() is not in the C standard and so compilers do not have to implement this but nevertheless it is useful and most compilers provide it. Here is a list of gcc C extensions

The stdlib is a set of functions specified in the C standard. Much like compilers, stdlib can have different implementations. The GNU implementation is open source, as is gcc, but there are other compilers and could be other implementations of stdlib that are closed source.

link|improve this answer
feedback

GCC's C compiler is written in C. So we know there are at least one C compiler written in C.

GNU's stdlib (glibc) is also written in C (stdio.h, stdlib.h). But it also has some parts written in assembly language.

link|improve this answer
1  
This does not answer the question. – SLaks Feb 24 '11 at 1:30
I don't think OP is asking if C is open source or not. I think OP meant a different thing despite question's title. Read the content carefully. – Pablo Santa Cruz Feb 24 '11 at 1:32
I think the part about stdlib is what OP is getting at, but it's kinda hard to tell. (ie: how is the object code for malloc etc. that a C program links to created?) – user470379 Feb 24 '11 at 1:50
feedback

The Compiler would determine all the mappings from C to Assembly etc... but as far as someone owning it.....noone really owns C however the ANSI/ISO determines the standards

link|improve this answer
feedback

A really good question. There is a way to define a language standard (not the implementation!) in a form of a "source code", in a strict and unambigous language. Unfortunately, all of the old languages, including C, are poorly defined. But it is still possible to translate that definitions into a source code form.

Another approach is to define a language via its operational semantics, often in a form of a simple (and unefficient) reference implementation.

link|improve this answer
feedback

Helgi Hrafn Gunnarsson has written the main answer but I thought it would be worth noting that you can effectively end up with dialects too.

The compilers should do the same thing with regards to whichever standard they support (which these days should be pretty much all the same version) but there are grey areas. The way in which the compilers work for 'undefined' functionality for example. If the C specification says that the behaviour is undefined for a specific case then the compiler can do pretty much what it wants.

There are also examples of functions added to the libraries (and new libraries added) by the compiler makers to support specific platform traits, create a competitive advantage or simply to make life easier. The cynical might suggest that some of these are added to help lock people into a specific compiler too.

link|improve this answer
feedback

http://gcc.gnu.org/

http://en.wikibooks.org/wiki/GNU_C_Compiler_Internals

Is this what you're looking for? The source for the C compiler?

Or this? The history of the GCC version of the C compiler?

http://gcc.gnu.org/wiki/History

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.