Every more or less popular programming language has its main site, which serves as a main entry point for everybody who wants to learn the language or find any information. Usually those site have links to documentation, tutorials for beginners, reference materials and so on.<p>C programming language is one the most commonly used nowadays, and still it doesn't have its "entry point". I mean, there are plenty of resources out there, but none of them serves as a source of truth.<p>Is there anything like that for C?
I think the answer you're looking for is "no".<p>Because C was developed at Bell Labs in the pre-internet 70s, the first "official" documentation was the book by K&R. Due to the language's popularity, it was standardized first by ANSI, then by ISO. So these days, the closest thing to a "source of truth" for the language is the standard published by ISO. That working group's website is here: <a href="http://www.open-std.org/jtc1/sc22/wg14/" rel="nofollow">http://www.open-std.org/jtc1/sc22/wg14/</a><p>Of course, standards documents are not really entry points, as they are extremely dry, technical documents. Which is why I think the answer to your question is "no".<p>I think your best bet would be to start with the second edition of "The C Programming Language" by Kernighan and Ritchie, then work your way "into the future" by looking at books on C published in the last decade.<p>HTH
comp.lang.c still used to be the one true place for c programmers to hang out at back when I started learning it in the 90s, not sure if that's the case these days.