C-source code

5 points by pencil ↗ HN
I've started to learn the c programming language.i'am wondering if i can get a list of websites which has plenty of c-source codes covering all aspects of c.I want to read code written by other and start playing with it. Please help

6 comments

[ 3.8 ms ] story [ 11.2 ms ] thread
Play with and extend a scripting language.

This might be a little old school, but for example the Tcl source is considered to be very clean C. You can download the source, implement your own command via shared library in C, or simply check out how commands like [open] or [expr] work by digging through the source. I believe the same applys to Perl and maybe Python.

Tcl and Lua have good C code. Perl 5's internals are messy and complex.
(comment deleted)