How many of us have those fond memories of daring to write more than 20 lines of code without compiling just to get a taunting blinking cursor of...
For further actions, you may consider blocking this person and/or reporting abuse
"Learn C the Hard Way" by Zed Shaw
It is the best modern book on C I've ever read! It introduces the concepts, pitfalls, features, and gotchas in such a way that not only helps you write good C code, but helps you understand low-level programming as a whole.
I peeked into the book. I like to have a book independent, and I just want to ask if you know any other C book that doesn't make you watch lecture videos? Just the book and reading and practicing? I know JavaScript by heart, and script with Bash. I know what programming is, so beginner Python-level book is something I want to avoid, just for reference :)
You can absolutely skip the lectures on Learn C the Hard Way. I don't know of a better resource. This one is pretty well oriented towards individuals who know other languages.
cool! I was afraid that LCTHW was going to be sort of high level-ish. I'll take a look!
I'm going through Build Your Own Lisp because I find myself in sorely need of learn more tooling (autotools) and stdlib.
Thanks for the comment :)
"Learn C the hard way" is definitely a great book for modern C. Other than that, I find that like with almost any other programming learning challenge, the best thing to do is find something you want to build and do so in C!
I absolutely agree. However, as a self-trained developer in several languages, I have learned there is significant value to following books and courses. When you learn via a project, you only absorb those parts of the language you needed.
Case in point, although I first started using Python in 2011, it wasn't until 2018 that I learned several tools in Python, including decorators and list comprehensions. Why? I'd never needed them, or else, never realized I could use them in place of some approaches I was more used to. Despite nearly seven years of regular Python development, I knew I had some massive gaps in my knowledge, so I started going through a comprehensive Udemy course for the language, and I'm so glad I did!
This isn't to say that projects aren't important -- you won't ever truly master a language until you build something meaningful in it -- rather, one should pair project-based learning with a good quality book or self-paced course.
Or, if all else fails, go read the documentation cover to cover. (Some of us are demented enough that we can do that.)
Another excellent book is "Crafting Interpreters" by Bob Nystrom. The second part of the book (still in progress) is how to create an interpreter in C
craftinginterpreters.com/contents....
John Calcote, Autotools: A Practitioner's Guide
C has an utterly needless amount of pitfalls. You hit the nail on the head: C is actively working against you. The compiler, the syntax, the (non-present) package system, the platform dependency... from a language perspective, C by all means and purposes should have died 15 years ago and replaced with something sane. At least a proper type system certainly wouldn't have been too much to ask!
It's not about pointer arithmetics and bitwise operations and manual memory management - there are plenty of valid use cases where you need to have that and can't do without, I get that. It's the language itself and it's tooling and "ecosystem" (or rather: the lack thereof) that somehow, some way inexplicably is still alive.
Don't get me wrong: every programmer should know the concepts of C. But the language itself (syntax, type system, compiler, tooling, package management...) is outdated and needs to be replaced, desperately. Why this hasn't occurred yet is beyond me.
The main issue many face when learning C is they don't understand how the computer they are programming for works.
C is powerful, but raw!
They have grown up with languages that deal with the underlying operations for them. Sometimes for simplicity, sometimes support and sometimes portability.
The ARM instruction set was created around using C to simplify the compiler.
But much of C is not simple or portable from a simplistic perspective, "int" on an 8 bit platform is not the same as it is on a 32bit platform.
But then there is understanding that an integer division operation could behave differently depending on the underlying processor ALU.
I'm not trying to dissuade people from learning C, but the learning curve is just as steep as when you learned your first language and you need a completely different set of skills to master it.
One of these days I'm going to get back to doing something similar. C++ was my first language and I actually really miss it. It's still my favorite language, mostly since it was my first, it is like my baby. I'll actually get back one of these days in "mastering" (if that's even possible in such a powerful language) some of the more advanced concepts in C++ and learning Modern C++.
Have fun and enjoy!
Good luck, and keep us posted about your progress!
Learning C has been in my to-do list for a couple of years now, I want to learn it for reasons similar to yours. Some day I'll get around it :D
will do!
K&R made into slides:
scotchka.github.io/c-course/revealjs/
Geez, I want to do a ton of low lvl stuff in C, but I have very little time to learn and practice it (being full time Kotlin dev) :(
Nice article though!
Learn Nim lang, modern programming language that compiles to optimized C/C++, nice C FFI, CompileTime execution, Python-like syntax, also runs on Frontend, worth giving it a try.