up vote 137 down vote favorite
51
share [g+] share [fb]

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 recommending Assembler, so add on question: Is it better to learn C or Assembler? If Assembler, which one?

Recommended assemblers so far:

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

link
show 2 more comments
feedback

locked by Robert Harvey Oct 5 '11 at 2:34

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ.

closed as not constructive by Gavin Simpson, Joris Meys, Robert Harvey Aug 2 '11 at 14:56

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

78 Answers

1 2 3
up vote 43 down vote accepted

Speaking as someone who has learned both C and Assembler I'm not sure that there's any real value to be gained from retrospectively learning those languages. They aren't particularly complex - the difficulty in using them stems from the fact that it's very easy to make mistakes, and those mistakes can be very difficult to find. Some people might argue that such a programming environment might force you to be more careful in your work but since you already have a few years under your belt I imagine you've already learned that lesson.

Joel Spolsky suggests that knowing C will help you to work around a leaky abstraction but I think you might find that in most cases somebody out there has already done it and been kind enough to post their solution on the internet. Google is our friend.

There's also the point that technology is moving so fast it's practically impossible for one person to keep up with it. Your time might be better spent researching the next big productivity booster.

link
2  
I think your statement that "they aren't particularly complex" is misleading. Syntactically, the languages are fairly simple, as languages go. However, programming is an interaction between the complexity of the language and the sophistication of the programmer. Simpler languages often force more complicated code (e.g. a LINQ expression vs. writing an equivalent algorithm in ASM). If you learn C, you'll learn new things about vtables, functors, closures, and many other things because you're writing them yourself, from scratch. – Kennet Belenky May 20 '10 at 18:01
show 5 more comments
feedback

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
51  
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 '09 at 19:47
6  
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 '09 at 8:29
13  
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 '09 at 16:38
1  
C is not legacy. You can do almost every thing through a C program in most of the cases. Try it. It will increase your knowledge of how a compiler or a programming language works. – Enjoy coding Sep 15 '09 at 6:40
4  
I agree about the "historical experience". It seems to me it would be akin to a native English (or Romance language) speaker, learning Latin. It could certainly improve your native tongue, will allow you to read "the classics", and may even inspire you to write classics of your own. – George Jempty Oct 28 '09 at 10:00
show 5 more comments
feedback

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/little 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
1  
Aren't some of these concepts actually specific to C? Pointers, C-style strings, following NULL pointers... . So while it's true that C teaches you about them, it's a tautology. – sleske Feb 1 '10 at 0:06
show 1 more comment
feedback

"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
7  
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
feedback

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
36  
+1 for pedagogical sarcasm – willc2 Apr 21 '09 at 10:16
show 3 more comments
feedback

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
feedback

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 enable 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.

link
feedback

What's the deal with C being important because of its "historical" relevance? Most of the software you and I use everyday is written in C! Your OS, browser, office suite, email app, media player, calendar, IM, VOIP softphone, and drawing tools are written in C, and this is not going to change in the next 5 years. .NET and Java are almost a decade old (Java already is) and even though they have matured a lot they have not replaced C/C++ as the language of choice for these apps.

Regardless of the educational value of learning a lower level language (which I totally buy) there's a real market for C/C++ programming skills. Stop talking like there isn't.

link
show 5 more comments
feedback

Regarding C vs. Assembler: I'd still pick C because:

  • It is more portable than an assembly language
  • It's much more readable than an assembly language
  • The C Programming Language_ is perhaps the best concise introduction to any language
  • There is a much larger code base of C out there to download and study, if you really want to see what the language can do.

And even though it provides a certain level of abstraction, C is still close enough to the machine that it will make you think about what is happening inside the box. And that mentality will help you program better in whatever language you ultimately use.

link
show 2 more comments
feedback

I'd advise against it, for the simple purpose that you won't learn anything useful or insightful from it (horrified gasp from the audience). You say you know Java. Good. So you already know about dangling pointers, you don't need malloc and free for that. You know Scheme, so C or ASM won't teach you anything except uglyness.

On the other hand, I would (strongly) advise learning C++ because this is a whole different story there, at least if you don't program “mainstream” C++. Let me clarify. C++ actually allows a bunch of very different techniques (they call it multi-paradigm language for a reason). Probably the least interesting (but most practiced) technique is OOP. Why does OOP in C++ suck? Because 1001 other languages do it better than C++.

C++, on the other hand, is the best (I will repeat: the. best.) language when it comes to algorithms because its template semantics, coupled with the iterator/range idiom allows a very transparent, type-agnostic programming style.

This may not be of practical interest for many programmers (it is for me) but it will make them better programmers nonetheless, because C++ is 50 years of theoretical computer science condensed in one language.

Take C's pointers. They are the single reason that made C so important because they provide a perfect abstraction for the memory architecture of modern PCs. However, the concept of pointers is nothing compared to the much grander, encompassing concept of C++'s iterators of which C pointers are only one instance (a “random access iterator”). On the other hand, take Java's iterators. They, too, are only one instance of the more general C++ concept, namely an input iterator.

C++'s iterators may be the single best concept in all of computer science, and I challenge anyone to find something more general and useful (… and I immediately exclude recursion).

link
3  
I will attempt your challenge: types. I subscribe to the theory that most bugs are type errors and would be caught at compile-time if we were writing in the right language. – A. Rex Jan 27 '09 at 8:26
1  
this answer should be the accepted one! – Comptrol May 28 '09 at 16:47
1  
I didn't say it was important for beginners. The questioner has "7 years programming experience", and was wondering whether C is a valuable language to learn next. – Matthew Flaschen Apr 5 '10 at 14:57
2  
@Matthew: exactly; and my answer was, “no, since C is cluttered with irrelevant details without actually giving new insights. Take C++ instead, it has new insights and makes the details less important.” – Konrad Rudolph Apr 5 '10 at 15:15
show 7 more comments
feedback

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
show 1 more comment
feedback

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
feedback

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
feedback

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
feedback

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
feedback

I think everyone should learn C, for many reasons:

  1. It is COOL to brag that you can program in C :D:D:D. Well, let's see this as a joke.

  2. To have a closer understand of the hardware. As a matter of fact, we will move further and further from the machine as technology progress (Asm -> C -> Java -> Javascript -> ???). However, that does not mean a real programmer should not care about the iron (silicon, silly me). After all, there are tasks which human does better than Computer and vice vesa. Understanding the machine helps the programmers to know what should be done and what should be left alone (right?). Lastly, you can write faster code by understand the machine better. The computer does not know to "create a big number" or "send this object to hard drive." Knowing this, you would tackle those stuffs with more care and create better codes.

  3. Learn C and break your PC! Seriously! You cannot create kernel modules with Java, right? Nor can do you some small yet deep stuffs below the abstraction layer provided by Java. Learn C and get your hand dirty :D (your mind entertained in the process). Red Alert: back up frequently, or you WILL regret.

  4. You cannot play with Open Source without knowing C. I think that 90% of source code is in C (or C++). Many new projects are in newer languages, but the important ones (Linux, GTK+, etc.) are still in C. Without C, you cannot understand them, right? And you cannot hack them. And you cannot break your machine.

  5. C is fun to learn, to be sure. It is a small language with extreme power. It also has vast amount of library for everything. And it lets you do cool stuffs, as above. Well, if you don't think those stuffs are cool, what is?

About Assembly, well, you can try, but beware, you MAY break your mind (and your machine, of course) along the way. Compared to C, I think it is just to barbaric. C is barbaric enough to have fun, any more will waste your time with doing too little stuffs. Yeah, Assembly wastes your time a lot, since you need to write huge code just to get some very very simple tasks done. If you do insist on learning Assembly, I think you can have fun with those for embedded systems (like ARM or so). First, those languages are more practical (you can build actual stuffs). More important, they are LESS insane than x86 asm (nightmare, nightmare).

link
show 1 more comment
feedback

Learning C is important. Every scripting and bytecode-interpreted language in existence was written using C or C++. It is empowering to learn the underlying technology that enables all of these higher-level technologies.

A perfect example is that you can use the C debugging tools to figure out what is wrong in a web application. At my last job, I had a problem with Rails segmentation faulting while loading an external library. I used gdb, nm and strace to solve this. If I hadn't known how to debug native applications using the gnu toolchain, this would have been nearly impossible to solve.

Learning C is important for your development as a programmer. It adds to your skillset and empowers you to understand software at a fundamental level.

link
feedback

Many programmers can survive their entire careers without learning C or Assembler. However, if you choose to learn them, you will 1. understand solid prinicples such as heap, stack, and memory management and 2. gain an increased appreciation for all the work that compilers do for you automatically.

link
feedback

I would highly recommend the following:

  • 286/386 computer (find one in a landfill I guess)
  • install DOS 6.22
  • procure a sphinx c-- compiler:
    • http://www.cs.utexas.edu/users/tbone/c--/
    • http://www.goosee.com/cmm/
    • http://sourceforge.net/projects/c--/

Sphinx C-- is a programming language that combines C and Assembler
It is essentially an assembler compiler with support for C-style functions and variables, and it comes with a pretty decent library of common functions to get you started.

* * * That is how I learned, so it must be best for you too! * * *

...In all seriousness, I did start with this language, and feel it gave me a great foundation for a career in computer programming. However, the most important part was probably being a kid and desperately trying to get a computer to do what I wanted it to, not the language of choice.

The fact that it was a dangerous language just alters the learning process in ways I can't even quantify... the real problem here is that everyone only has one "first language", and you can't go back and see how differently you'd be shaped in you were a C-guy instead of a VB-guy

(I recommend a 286 because they boot so fast, and since many programs that don't work will simply CRASH, this will enhance your edit-compile-test loop ^_^)

link
feedback

C is so widespread that, and this is regrettable, a lot of languages have similarities to C despite being intended for a different paradigm. I suppose the idea was to reduce the learning curve or something. Anyway C syntax has 'colourd' the syntaxes of many languages: C++, Java, C#, and on and on ...

C excels as the language to replace assembly programming and gain re-usability. Don't ask "C or assembler", ask "C or all the assembler languages". Pretty much anything you can write in assembler you can write just as well in C, and don't need to rewrite much when you change hw.

Almost all other languages rely on C in one way or another, many are implemented in C. The one compiler you are almost guaranteed to find when you target any hardware is C. So if you want to build a component that reaches all the hardware your first thought is to write it in C.

As a consequence, I'd say every programmer should know both C and higher level languages. At the least the skill will enable you to import components you may find you need into the high level language you prefer to use.

But don't confuse C with C++.
Many times you will see "C/C++" as though they are interchangeable. They are not.

C++ tries to be all things to all people and consequently comes out as the epitome of mediocrity. If you wan Object Oriented, almost any other, Objective C, Java, C# is preferable. C is much better than C++ at being C.

link
feedback

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
feedback

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
feedback

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
feedback

At NASA, C and Java show up on a lot (and I mean a LOT) of our deployed robots and satellites. Why? It runs light and works well with our hardware. If you ever plan on working in a field where components won't be bought at New Egg or PCMall, I'd pick up some C.

link
feedback

Do you need to know C? Obviously not or else there would be a lot less programmers. Will it make you a better programmer? Debatable or there would be no point in asking this question.

All I know is from experience in the classroom (not done with school yet) the people who know at least one lower level language can program circles around the ones who stick with C++ or higher. I am glad I was forced to learn it, x86 ASM still gives me the shudders though.

link
feedback

Learning C and Assembly programming are both worthwhile experiences--that much is easy to establish. But C is also easy to learn, because it is a small language that hardly does anything to get between the programmer and the underlying machine. I can understand how one might be hesitant to take the mental leap required to program in, say, Lisp, but understanding C seems like a relatively small deal.

Certainly there are many programming styles and problem domains that make C programming difficult, but that has more to do with the inherent difficulty of programming than with the C language itself. I find that C is one language (perhaps the only language) in which I've nearly always understood exactly what it is doing. That is to say that I find myself confident in knowing precisely what the various C data types and operators do.

Assembly programming is not difficult either, but it is highly arbitrary. With assembly, one tends to have a set of very precisely defined operators to deal with, and it requires some imagination to see how they can be combined to achieve something useful. What one is learning with assembly is how the machine architecture works rather than the language, because assembly really isn't much of a "language." It's just a set of macros for the raw machine code.

If you've done any low-level programming, such as in assembly, and you've done any high-level programming, such as in Python or JavaScript, then you pretty much get C for free. Given that, why not "learn" it? :) The real obstacle here is understanding computer architecture, not learning a language.

link
feedback

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
feedback

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
feedback

In general, you should learn a variety of languages, if you're serious about enlarging your conceptual vocabulary. Either C or Assembler will force you to deal with the lowest level of programming detail (as seen from the CPU). But you should balance that with e.g. Haskell or Lisp for exposure to programming as seen at the completely conceptual level.

Programmers who think that there's only One Right Way to think about programming are self-limiting, IMHO. (Not evil, just missing out on some good alternative perspectives.) What would you think of a carpenter who only used a handsaw?

However, back to your original question, I think you should only learn C (or any other language) if you have your own reasons for doing so. I don't recommend spending the time just because somebody told you that it is the only way to understand pointers, any more than I recommend avoiding it just because somebody told you that it is outdated.

I believe that someone with a real aptitude (and hunger) for programming will find a way to learn more and do better; someone without the passion probably won't benefit from being exposed to some syntax.

link
feedback

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

link
feedback
1 2 3

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