vote up 76 vote down star
22

Original Question: Should I Learn C?

In the theme of the stackoverflow podcast, here's a fun question: should I learn C? I expect Jeff & Joel will have something to say on this.

Some info on my background:

  • Primarily a Java programmer on "enterprisy" systems.
  • Favorite languages: python, scheme
  • 7 years programming experience
  • A very small amount of C++ experience, practically no C experience
  • No immediate "need" to learn C

So should I learn C? If so, why? If not, why?


C or Assembly?

Lots of folks recomending Assembler, so add on question: Is it better to learn C or Assembler? If Assembler, which one?

Recommended assemblers so far:

  • Motorolla 68000
  • Intel Assembler (does he mean x86?)
  • MASM32


flag
show 1 more comment

71 Answers

prev 1 2 3
vote up 1 vote down

Learning C will help in the future as far as your understanding of low level concepts goes, but you really need to ask yourself if you actually need to know about them.

If you planning on writing a compiler, or one day turning to assembler, then yes, learn C. On the other hand, if hardcore memory management (that isn't really that complicated), pointer arithmetic and a deep understanding of hardware isn't something that is essential to you or your career, skip it.

I need to use C++ for various tasks, so I have to learn that language. I have never once needed to use Haskell, so I'm not going to learn that language. Of course, it would be nice to learn every language under the sun, but remembering the awesome article by Norvig, you need to ask yourself if you could put enough hours in to learning C to become useful at it.

link|flag
vote up 4 vote down

Yes, you should learn C. Just like all Americans should learn a language other than English. :)

I agree with what other people said in that it's good to learn how memory allocation works, how to actually and efficiently implement data structures, do bitwise operations, how to — for example — implement a memory efficient XML parser that can handle a 2 gigabyte document being fed to it.

You may never need to use it directly, just like you may never need to use those 6 years of French, but at the very least the ancillary knowledge you gain in learning it unquestionably makes you a better programmer. All else being equal, you should learn it just for the sake of learning new things... and Python and Lisp and Ruby and Erlang too. Of course, here in the real world there are obviously limiting factors like there being only 24 hours in a day, and you have to sleep sometime.

C looks good on a resumé and if you can do interview programming problems in C that is a huge strength. I give points for that, even if the position we're hiring for would be in higher-level languages like C#, Java, or Python. In some ways it's an "old boys" club, but in others it means that I could trust you to find and fix a memory usage problem in our Python app.

link|flag
vote up 47 vote down

"Should I learn C?" is poised to become Stack Overflow's version of "Should I use vi or emacs?" :)

In the Pragmatic Programmer, Hunt and Thomas offer a bunch of tips for becoming a better programmer. One of the most important tips is:

"Invest Regularly in Your Knowledge Portfolio; Make learning a habit."

Regardless of whether or not you will ever use C (or Scala, or Lisp, or Modula 2, etc.), there is no harm in learning something new. In fact, learning a new language will force you to look at problems from a different perspective, offering insight into different (and sometimes superior) solutions, regardless of implementation language.

If you're interested in learning something new, and consequently improving your skill as a programmer, you should definitely learn C, or Scala, or Lisp... You get the idea.

link|flag
1  
I second this. Learn everything you can, even if you have no reason to do so. – Jeff Hubbard Sep 27 '08 at 9:24
1  
seconded whole heartedly – Kris Oct 20 '08 at 22:58
show 1 more comment
vote up 1 vote down

Like Jeff I never learnt C or C++. I ended up in programming by a sort of accident and learnt vb 6 followed by C#.

It was only until I joined a larger company working on big projects that I found I had missed out on some core principles that on my own smaller projects I never worried about.

Looking back over those years I would have benefited from learning C at the start but I have now learnt many of the skills over the years and I feel I would only gain a small advantage by learning it now.

I guess all in all it depends on your situation but I believe how things work under the hood even in a world of managed code is very important not to cause your self headaches down the line. For example if you no nothing about memory management and your calling unmanaged code, when to use a hashtable over an array, why and when use structures instead of classes etc.

link|flag
vote up 75 vote down

C is valuable to understand the following:

  • Pointers and addresses
  • C-style strings (null terminated)
  • Dynamic arrays (malloc( n * sizeof(int) )
  • Memory management & the pain associated with it (malloc/free)
  • Bitwise manipulations, issues like big/litte endian byte order
  • OS primitives & signals
  • Common problems: Segmentation faults, core dumps, following NULL pointers

Learning about these topics is different from building a full OS or compiler (which is what C is "good for"), since it's overkill in most cases. You could start with a simple program to allocate an array and walk through memory. Then make a linked list and follow it along. Use a good debugger like GDB so you can step through your program and see what's going on. C can be painful otherwise.

It's valuable to see how these concepts work under the hood, but they usually aren't necessary on a day-to-day level.

link|flag
vote up 20 vote down

Well I think you shouldn't learn C, who needs it, right?
Its not like mathematicians learn any old math, right?
And its not like physicists learn old theories, right?
And its not like professionals of any other field learn anything more than a decade old, right?

Oh, wait...

link|flag
3  
+1 for pedagogical sarcasm – willc2 Apr 21 at 10:16
vote up 1 vote down

I guess it depends

Personally, I spent a bit of time learning C and got a lot of benefit from it (but it was the first language I really learnt after college). I've since done a good bit of C++ and some Java and I found knowing C helped me for both of those languages.

If you are only going to code, as you say, "enterprisey" systems, then you'll probably never need to use the more esoteric elements of c (and there is absolutely nothing wrong with that).

If you have a bit of spare time, pick an area that C is particularly strong in (anything that requires lots of speed and tight control over memory, image/video processing for example) and try coding in it to get the benefits of C knowledge.

And yes, when you want that linked list, you are going to have to write it yourself - using structs and pointers!!!!

link|flag
vote up 10 vote down

I think one of the most important things about having a C background is understanding basic data structures, like how a true array is implemented differently than a list, map, etc. I think it would be a major help to read up on how to implement a linked list and why you would, versus just declaring or allocating an array.

As far as learning all the syntax and standard libraries, I'm much more ambivalent. I just like to have a basic idea of what Python is doing when I ask for one data structure over another.

link|flag
vote up 23 vote down

I think you should know enough C++ to be able to understand the Java runtime (both the native class library code, and possibly HotSpot itself if you run into its bugs). Also, if you're using CPython, then enough C to be able to peek into its internals as necessary, and similar comment about whatever Scheme interpreter you use.

This relates to what Joel said about leaky abstractions, and I agree with him: all meaningful abstractions are leaky, and when they do leak, you need to be able to know what's beyond the abstraction. Eric Sink has an article about abstractions too.

Knowing C is also very useful if you want to write foreign function interfaces (FFIs) for your respective languages, because most FFIs accommodate C to some degree (and if you're using Boost.Python, then C++ too). Knowing how to write FFIs are useful if you need one language to be able to use functionality in another language.

So, you may not immediately need to know C, but I believe that in the longer term, knowing C will add to your toolkit, and allow you to solve a greater set of programming problems, such as by writing new extension modules when you run into the limits of your programming platform.

link|flag
vote up 7 vote down

A major motivation for learning C, in my opinion, is if you don't have a really solid understanding of how code interacts with memory. Java and C# are so abstract and almost magical in their management of memory, that it's easy to be an expert in either, without ever really knowing what's happening under the covers.

I'd say learning C is overkill just to understand memory as there are plenty of great articles out there, but it's something that you ought to be able to pick up very quickly given your experience.

link|flag
vote up 1 vote down

as the person who originally asked the question about learning C++, I say yes.

link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

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