vote up 77 vote down star
23

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

1 2 3 next
vote up 94 vote down check

My answer is "yes, but don't feel pressured to do so". I think learning C could be considered almost a historical experience, as it is the origin of most modern syntax. Besides, you'd be hard pressed to find a programming book better than The C Programming Language - it's just so brief and readable.

All that said, it is certainly not essential. If you want to, try it. If not, don't.

link|flag
7  
Historical? C is one of the most powerful beautiful languages created. I use C day-in-day out for projects that need to be fast, lean and clean. IMHO many of today's technical problems arise from people not keeping-it-clean and simple. If I didn't have C, my programming life would suffer. Never-mind the fact that much of today's critical software (Kernels, Embedded systems, drivers) are written in C. – Aiden Bell May 13 at 19:47
1  
I meant historical as to someone who had spent their programming life with Java/C#/whatever with C-like syntax. C is good for some people. I'm not making a judgement call on the relevance (or lack thereof) of C. – Bernard May 14 at 8:29
2  
You can usually tell that a programmer works mostly on desktop applications or enterprisey systems if they say that C is "legacy" or make similar remarks. There's much more software out there than what you'll find running on your desktop (or on your server). Almost all of it is written in C. – Dan Moulding Sep 10 at 16:38
show 3 more comments
vote up 1 vote down

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

link|flag
vote up 8 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 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 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 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 22 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
4  
+1 for pedagogical sarcasm – willc2 Apr 21 at 10:16
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 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 48 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
2  
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 2 more comments
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 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 1 vote down

This may not apply to C - perhaps it represents some magical exception - but in general I've found that there is learning something, and learning something. As in, you can read about it, try it out, and hopefully understand it, but that isn't the same as using it to make something for real. Personally I have no interest in learning C or these low-level things. I studied Von Neuman architectures and even some assembler at uni nearly 20 years ago, and I've never been able to understand the relevance of that stuff to userland world of application development that's been my career for the last 10 years. Maybe it's just me.

link|flag
vote up 1 vote down

As several others have mentioned, learing C will teach you about pointers, memory management, dynamic arrays, and other low-level features that more modern languages handle for you. I learned C in college, but have not used it professionally; however, I think I've benefitted from having seen what's going on under the hood.

That said, I wonder if it's possible to get a peek under the hood without learning the entire C syntax. Other than learning an assembly language, I can't think of another way off the top of my head, but somebody else might have some ideas.

link|flag
vote up 1 vote down

C is a small language which won't take you long to learn, especially with your programming background. It's also a great route into many powerful scripting languages, such as AWK, as a lot of the syntax is shared.

As Kernigan and Ritchie say in the preface to "The C Programming Language":

"C wears well as one's experience with it grows"

link|flag
vote up 1 vote down

I say yes. James Delvin of Coding the Wheel writes an excellent post: http://www.codingthewheel.com/archives/learning-to-drive-a-stick-shift. If you understand the low level stuff, you can better understand what Java does for you.

link|flag
vote up 0 vote down

No.

link|flag
vote up 17 vote down

The two most interesting courses I did at university was "functional programming in Scheme" and "Micro Controller System Design". I would definitely recommend learning some of these “historical” languages. Even if you don’t use it in your everyday work it is fun and rewarding to learn how things really work. Also, many of the ideas and concepts from functional programming are now moving into mainstream programming languages like C# and Java. Also the “The C Programming Language” and “The Structure and Interpretation of Computer Programs” (Scheme) is two amazing books “everyone” should read.

Learning C will also enabling you to explore more exotic platforms like the Nintendo DS/Wii, the Sony PSP, or writing micro controller code. It will also give you a good foundation to learn Objective C if you want to get into programming for the Mac or the iPhone. Adding a link to my final project in the micro controller course – Super Mario Pong on the STK1000 developer kit.

Edit [Justin Standard]

Great Answer, Jonas. I think this is a much more practical example of why to learn C and what it can be used for than some of the others.

link|flag
vote up 2 vote down

If you're interest in learning C is to understand how things work.. I'd suggest hitting an even lower level: Assembler.

Keep in mind Assembler is no easy task. Nothing is done for you. Nothing is assumed. There are some decent IDE's (for windows and unix - I know of none for mac). I think one of the best ideas learning Assembler will teach you is efficiency. Something modern languages forgot.

link|flag
vote up 0 vote down

To C or not to C, that is your question... or is it?

What is your motivation to learn C? Are your bored, looking for something new to do? Do you think it will improve your employability? Need more ammo for "programming language X kicks your programming language Y" arguments? Why C, why not learn Ajax, or some technology that could apply to your current 'enterprisey" work situation?

Maybe, instead of questing forth on why to learn C, decide What.
Design an application and then go about learning how to make it.

link|flag
vote up 2 vote down

If there is any chance you want to play around with GNU/Linux, at some point it will be nice to know C at least as much as to understand compiler warnings.

If you know C, there are quite a lot of free software projects using it - this could be a good way to practice. Working on a real project is also good motivation to keep on learning.

link|flag
vote up 2 vote down

I've been programming for about 25 years now and when ever I am asked if I know C I respond - "I'm planning to learn C once I've mastered Assembler" ;) personally I have found my grounding in Assembler has been more than sufficent in allowing me to understand how things work - perhaps more so than those who learn C and not Assembler.

link|flag
vote up 1 vote down

Yes.

You'll learn about memory management, and that is good.

link|flag
vote up 0 vote down

Marie brings up a good point in that C is quite a widespread language. If you are tossing up between C and assembly, I would say go for C because it could have some practical application. Not to say assembly wouldn't, just that C would be more useful on balance.

link|flag
vote up 2 vote down

Is it better to learn C or Assembler? If Assembler, which one?

I'd say it's "better" to learn C, but it definitely is worth being familiar with assembly. The instruction set doesn't make much difference. At university I did some programming for Motorola 68000 processor. It is easy enough, and you also can get it run on Easy68k simulator.

Similarly with C. You don't have to become pro in that language, but it might be very useful to know some of it.

link|flag
vote up 1 vote down

I think learning C is important for understanding memory management and pointers. I also think it is good to be exposed to assembler so that you have a better understanding of how the computer actually moves, stores, and processes data.

link|flag
vote up 1 vote down

I think you should learn C. I'm currently taking a course in C\C++ and Unix Programming this semester and learning C does feel rather liberating. The amount of time it takes just to cover the basics of the language isn't that long for anyone with any previous programming experience. The amount of work is well worth the reward.

I'd also suggest doing an Assembly language like the previously mentioned 68K. If you cover the assemly language first it will make learning C easier.

link|flag
vote up 1 vote down

I would say no, but become familiar with the strengths and weakness of the language. Remember that programmers have a theoretical "toolbox" that they go to every time they need to solve a problem. Choose the best tool for the job based on your experience and knowledge of the tools at your disposal.

If you're writing a rich internet application, C is not the choice to use. If you're writing an application for a legacy machine with a finite amount of memory and needs to run as fast as possible, then C is probably the best tool for the job.

link|flag
vote up 6 vote down

I cannot decide for you, but I can give you what learning C and Assembler would help you so.

C:
C programming is used today, in low level systems programming such a writing drivers, compilers, system utilities, operating systems, etc. Although, it also finds some application in other places, in general people are moving away from it to learn 'new' stuff and 'new way' of doing things.

However, in my opinion, learning C helps you understand the intricacies of memory management, data structures and helps you get in touch with a different way of doing things (which is quite a bit differnt from the object oriented way). It is very good language to learn about algorithm efficiency and hardware programming.

Since C is an old language, it has quite a number of offshoots which a similar like Pro*C, System C and others. Also as Jonas mentioned, C is also widely used across various platforms and systems like mobile phones (BREW), Nintendo DS, etc.

If you are interested in hardware side of things and GPU technology, you will also be able to better appreciate and understand the Nvidia CUDA platform.

Maybe if you get good enough, you might even want to participate in Obfuscated C programming contests :)

Assembler:
Assembler is a completely different beast altogether. Assembly languages help you fine tune and control how exactly you want to run each step of your program or application. Assemblers can help you understand how things work on a instruction set level, provide you with an a intricate knowledge of CPU instruction sets and CPU timing cycles. Its fun, but it is very easy to get lost when the code gets long enough, because of all the Jumps, and Long Jumps (similar to GOTO) scattered in the code.

I remember writing a utility similar to the modern CPU-Z, using MASM (Microsoft Assembler). A good place to start would be to look at Intel Assembler or MASM32 assembler.

link|flag
vote up 6 vote down

Regarding the "C vs. assembler" question, I have a few off-the-top-of-my-head thoughts:

  • "Assembler" is a little ambiguous, as there is a different assembly language for each type of processor. There are common principles, but choosing which one to learn will have a big effect on how useful and/or painful the exercise is. Some assembly languages, like VAX or M68000, were designed to be easy to write. 80x86 is not, so that should not be the first one you try to tackle.

  • I learned a couple of assembly languages (6502 and M68K) before learning C. I think that helped a lot with learning C, as C can be seen as a "portable assembly language." If you already know how to manipulate bits and bytes and memory addresses, then C makes a lot of sense.

  • I'd recommend learning C first, then only learn assembly language if you are still interested in going deeper.

  • While some people like to lump C and C++ together, they are really different languages that support different styles of programming. If you want to learn C, then learn C. If you start with C++, then you may miss out on what is important to learn from C.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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