TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

C-source code

5 pointsby pencilalmost 14 years ago
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

4 comments

eijialmost 14 years ago
Play with and extend a scripting language.<p>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.
评论 #2748755 未加载
BlackJackalmost 14 years ago
<a href="http://www.gnu.org/software/software.html" rel="nofollow">http://www.gnu.org/software/software.html</a><p>All or most of the packages are written in C and a great example to learn from. They might be a bit advanced for you but it's a great resource to see effective C code.
smoovealmost 14 years ago
<a href="https://github.com/languages/C" rel="nofollow">https://github.com/languages/C</a>
leegaoalmost 14 years ago
For hackish C, <a href="http://ccan.ozlabs.org/list.html" rel="nofollow">http://ccan.ozlabs.org/list.html</a> (it's like CPAN, but for C)