vote up 6 vote down star

I'm a C# programmer and I'm sold on the benefits of learning C. I want to deepen my knowledge of the underlying OS and CPU, understand the pain of memory management that garbage collection encapsulates away and generally improve my high-level programs thanks to an appreciation of the low-level issues that the compiler is dealing with on my behalf.

My question is how long can I expect to spend learning the C language in order to gain these benefits?

Is a couple of weekends spent reading the K&R book from cover to cover sufficient, or do I need to schedule time to cut some code? Do I need to spend time delving into any libraries, or is an understanding of the first-order concepts in the language enough to improve my C# code?

To be clear, I don't intend to write any significant programs in C. My goal is more to learn from the language than to become an expert in the language.

flag
4  
Learning c has not so much relationship with learning OS details as you think. – arsane Jul 21 at 12:20
@arsane: Interesting observation and one which will be the subject of an upcoming question :) – wildcard Jul 21 at 12:41
@wildcard: Really, OS primitives just have a C-style interface, nothing more. Code for using WinAPI looks very similar in Object Pascal (Delphi) and C. – sharptooth Jul 21 at 12:45

11 Answers

vote up 18 vote down

C will take a week to learn, and a lifetime to master.

link|flag
3  
That's true, but only because they keep changing it! – Neil Butterworth Jul 21 at 12:43
@Neil Butterworth, How is C being changed? – Liran Orevi Jul 21 at 13:20
Three quite different languiages so far: K&R C, C89 (aka ANSI C) and C99. – Neil Butterworth Jul 21 at 13:33
Almost certainly true. But there must be a continuum of knowledge that can be learned on the journey to mastery. In the early stages it will be general concepts that I am hopeful will be useful to me elsewhere, in the later stages I expect the knowledge will be in the realms of esoteric arcana. There's no doubt that I will embark on this journey - my question pertains to where I get off! – wildcard Jul 21 at 13:49
1  
You can get off with C .. like the Hotel California, you can check out anytime you like but you can never leave. – Larry Watanabe Jul 21 at 14:24
show 2 more comments
vote up 16 vote down

Reading a K&R book and not writing code is like reading a book on weapons and never actually shooting. Yes, you've read in a book, that it works this way, but you have never encountered the typical problems that arise while doing this. Without practice such "knowlegde" is worth very little.

Plan to spend 2-3 years slowly writing small programs for solving different tasks in C. This will count as real experince. C provides delayed gratification for your effort.

link|flag
3  
to which I'll add: The key here is to find a little project you want to do and do it all from scratch, learning the whole way through. Don't run through someone else's sample code. And don't make it so simple that you don't have to use many pointers ;-) – Dave Markle Jul 21 at 12:20
1  
@Dave: That's better than nothing, but this will only help you master a very small portion of C. To gain really worthy experience you need to ssolve a handful of different tasks. – sharptooth Jul 21 at 12:21
1  
C really isn't that difficult. I read K&R in a few days, and the very first program I worked after that was a filter to print APL programs on a UNIX printer - that took me about 5 days. I'd classifiy myself as C89 expert, and I reckon I gained all that expertise in about 6 months. – Neil Butterworth Jul 21 at 12:23
@Neil. 6 months is a long period too compared to the few days for reading the book. In my estimate I deliberately accounted for slow learning instead of intensively solving problems how it happens in a workplace. – sharptooth Jul 21 at 12:25
1  
I've never taken any time to understand how to get UB - I have spent a little time learning how to avoid it. – Neil Butterworth Jul 21 at 12:38
show 3 more comments
vote up 5 vote down

I'm not sure how long it takes to learn a language - it probably comes down to the individual. But I'm pretty confident you can't learn one without writing and debugging code in it.

link|flag
vote up 4 vote down

Ten Years

link|flag
vote up 2 vote down

If you can read K&R and understand it all, that's pretty good, as K&R covers pretty much all of the language.

However, reading it and understanding it all are very different. You should probably take a few passes through K&R and do all the associated exercises to ensure you really know it.

Even after reading through all of that, you will spend more months learning pointers the hard way. Expect lots of seg faults. On the plus side though, you'll get really good at reading hex!

There are a few caveats that the language has that you'll find out as well. One that used to give me trouble is that all pointers are the same size (4 bytes on x86), regardless of what they point at. A char* is the same size as a void* and an int*.

link|flag
1  
But even after "finishing C", you won't be a master. The K&R book is a great starting point, but unless you dig deeper on your own, there's still a lot of learning to do. But it's like that with any language. – Thomas Owens Jul 21 at 12:19
Funny... my prof at University (C programming class) defined "heretical" the K&R book because, in his opinion, it contains lots of errors (e.g.: if memory serves me well, I found a discrepancy comparing the exit codes of some strtoX functions). His (somewhat correct) suggestion: read other books, including the C89/C99 official standards. – Gian Paolo Ghilardi Jul 21 at 12:55
@Giani Amyone can say stuff like that, but one wonders how much credence to give to it when they use terms like "exit codes" - C has no such concept. – Neil Butterworth Jul 21 at 12:59
"Exit codes" is due to his "recommendation" for using EXIT_SUCCESS/EXIT_FAILURE macros for main() instead of return 0 & Co... :) – Gian Paolo Ghilardi Jul 21 at 13:04
I thought you were talking about strtol() et al? – Neil Butterworth Jul 21 at 13:08
show 4 more comments
vote up 2 vote down

You definitely need to write some code - I don't believe you can learn any language without doing that. K&R has lots of exercises you can practice on. It's difficult to know how long in terms of elapsed time it will take to get a good working knowledge - I used to teach pretty much the whole language in 4.5 days, but that is quite intensive. I'd suggest about a month, if you are doing an hour or so a day.

Edit: I must admit, I find it a bit depressing that so many people think C is so difficult. K&R is 272 pages long, in my copy, and covers basically everything you need to know, including the standard library. Is there book in ANY other programming language that covers the whole shebang so concisely? I don't think so, and the reason is not that K&R is compressed in some way (Brian Kernighan is THE greatest techical writer, IMHO) but that the language is simple and easy to describe.

link|flag
vote up 1 vote down

I read the K&R book cover to cover and would not say I have any great understanding of C. Some time doing the exercises in K&R would be hugely beneficial.

I'm sure C libraries would make you more productive writing programs, but if it is simply learning C you are interested in, then you can implement anything yourself that you need. www.projecteuler.net is a good source of problems (although slightly mathematical in general) for you to get started on, if you fancy trying some coding outside of the K^R exercises.

link|flag
vote up 1 vote down

In a couple of weekends, you will obtain mainly two results:

  1. hello world
  2. a lot of segmentation faults

C is not easy, in particular if you are not used to its hardcore concept. You will have to invest weeks, even months in tinkering with it, to grasp the most obscure (but still not too much) essence.

link|flag
1  
C is easy. It's probably the easiest language I've ever learned, apart from old Dartmouth-style BASIC. Languages like Python, Java etc. are much more complex. – Neil Butterworth Jul 21 at 12:40
Yes and no. The syntax is indeed easy. it's procedural and you have a limited amount of datatypes. However, when you delve into pointers, and pointers of pointers and typedefs, and start passing arrays around, then it gets messy. That is what I am referring to – Stefano Borini Jul 21 at 14:40
1  
Pointers are really, really easy. I have trained hundreds of programmers in C and pointers. A handful (perhaps 2?) had a problem with pointers, but they also had problems with the concept of loops, functions, etc. – Neil Butterworth Jul 21 at 15:05
I too am baffled as to why people think pointers are a difficult concept. – hipponax3 Jul 21 at 15:22
Don't know, but every time I had to debug someone else's code, I always found issues with pointer handling, and pass-by-value/pass-by-reference issues (scanf being the most famous case). I must however state that I mainly worked with future chemists or hobbyists, not future computer scientists. – Stefano Borini Jul 21 at 15:36
show 3 more comments
vote up 0 vote down

40 days and 40 nights.

If you can't do the days and nights sequentially, then it will be 42 weekends.

But seriously, without putting any context on how fast you learn other topics, nobody can give you a real answer that is relevant to you. We can say how long it took us to learn it to a satisfying level, but that has zero correlation to how long it should take you to learn it.

If you said it took you 6 months to be good at C#, then maybe we can say it should take you 6 months * X (where X is still a guess, but a better guess than now).

We can all agree, however, that just reading the book is not enough. Of course you will have to write code. That is how we best learn anything - read it, write it, teach it. If you really want to learn something, teach it.

link|flag
I considered including some additional personal background in the question for exactly this reason. I decided against it because the answers would then be specific to me and less generally applicable. By omitting the context, I think most respondents are assuming a reasonably competent developer and answering accordingly. – wildcard Jul 21 at 13:25
Yeah, but then we assume about the average case and give you no real answer. Basically, it boils down to us answering "what should I do to learn it" instead of "how long will it take me to learn it." I mean, it is such a broad answer that it is a non-answer. – Erich Mirabal Jul 21 at 13:55
vote up 0 vote down

It will take a lot lot longer if you just sit around asking abstract questions and not actually diving in and doing it. Do you have a deadline or something? How long will it take me to learn the piano? Who cares, I just wanna make some noise. That's how kids learn so fast. They don't care about becoming an expert, or even good. They just like to play.

In any case, if you want to learn some interesting things, try some assembler as well. A lot of people really hate it, but that's just because they don't like spending countless hours not accomplishing much. I like it just fine.

link|flag
1  
"they don't like spending countless hours not accomplishing much. I like it just fine." Great quote. – samoz Jul 21 at 14:35
vote up 0 vote down

To understand the pain of memory management just being writing sample programs with stacks, linked lists, binary trees, etc. You'll see what your getting into.

In school i was taught C as the introductory language and as pointers got introduced a whole slew of individuals dropped the class because frankly its a hard concept to grasp.

As many of the other answers have stated... Plan to not only read but practice. Theres no doubt that you haven't learned alot from C# by just making mistakes while coding and having 'aha!' moments.

IMO: 3 to 4 years to really understand the majority of concepts. A book will help you realize what the capabilities of the language are.

link|flag

Your Answer

Get an OpenID
or

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