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

vote up 15 vote down

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|flag
show 1 more comment
vote up 1 vote down

C was the first language I learned. I rarely use it, but it's great to know even just to put other, more abstract languages like C# and Java in context.

It's also immensely satisfying to develop in C. It is tricky, sure, but the sense of accomplishment after completing even trivial tasks is unbeatable.

link|flag
vote up 1 vote down

I think C is worth learning, especially in combination with basic system architecture topics. The sys arch book I used in school was this one:
Computer Organization and Design

Part of learning system architecture will likely involve learning assembly and the basics of what makes up an ISA and how the instructions in the set are executed on a processor.

I believe that knowing C and how the machine works at this level will make anyone a better programmer.

Other than purely pedagogical motivations, there are other benefits to knowing C:

  • C compilers are available on almost every platform, from game consoles to desktop systems to the Mars Rover. Chances are, if it is a programmable digital computer, a C compiler exists for it.
  • C is one of the main languages for linux development (both kernel and application level)
  • C can be used to extend interpreters for other languages (Python, Ruby, Perl, etc)
  • C allows you to write code to take advantage of emerging hardware designs (think GPUs and CUDA)

Plus, I think learning C will be fun for most people.

link|flag
vote up 0 vote down

In my experience, learning C is valuable in understanding how the bits move around all the way up and down the technology stack, particularly if you're a hardware guy like Jeff:

  • A little physics will teach you how semiconductors work, most notably transistors;
  • Put a few transistors together to create logic gates (AND, OR, NOT, etc.)
  • Assemble a bunch of logic gates to form a microprocessor
  • Tell a microprocessor what to do via machine code
  • Assembly language is a more human-readable way to produce microprocessor machine code
  • C is a great bridge between assembly and higher-level languages. C will help you understand Assembly and vice versa.
  • C++ is basically an object-oriented extension grafted onto C
  • And on to higher-level languages (Java, C#, etc.)
link|flag
vote up 13 vote down

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|flag
show 3 more comments
vote up 4 vote down

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|flag
vote up 0 vote down

In short, yes. C was one of my first languages I learned and always refer back to the way C handles things and comparing to today. I think C and Assembly are great to know what is really going on in your computer where todays languages abstract away too many things and developers really can't understand the fundamentals.

Much programming on Linux systems is done with C and C++ still today, so that should say a lot. It is a very fundamental langage to at least grasp the concepts from, even if you never write commerial C.

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

If you want (or need) to write C programs, then, yes, obviously.

Otherwise, there are better languages to learn. I write predominantly in C++ (for good or ill) and I've never learned C, nor had any need to. It is certainly not required.

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

I say that it never hurts to lean a new language. Pick up the K&R book and give it a shot.

The biggest reason that I'm glad I learned C is that a lot of languages inherit their syntax from it; as you've already learned Java, this probably isn't so much of a big deal for you.

As for the assembly languages, if you're going to try one, you might as well go with Intel X86 since it's basically everywhere. It's not too hard, just very tedious. But, if you ever do any kind of work on an embedded system, it'll be nice to know how to put ASM together, even if you'll be doing it for a different chip.

link|flag
vote up 0 vote down

The general reason to learn C that people give is to learn how computers work and by doing so write code that translates better in computer instructions. For that end I (as a college student) found out that my digital logic courses where far better for that end than learning C.

http://www.amazon.com/Fundamentals-McGraw-Hill-Electrical-Computer-Engineering/dp/0072499389/ref=sr_1_1?ie=UTF8&s=books&qid=1219947016&sr=8-1

This book is great for that end. But much of it you do not need to know unless you really want to design hardware.

link|flag
vote up 1 vote down

It depends. If you plan to learn c++ or objective-c, you should learn c since both c++ and objective-c are super sets of c. Also, if you want to code for resource constrained platforms like many embedded systems, c comes in very handy. However, today there are many languages to choose from, so leaning c is not absolutely necessary. Finally, I disagree that c is a "Historic" language since there is a lot of software being written in c. Yes, its old but not obsolete.

link|flag
vote up 1 vote down

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|flag
vote up 4 vote down

I would highly recommend the following:

  • 286/386 computer (find on 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|flag
vote up 1 vote down

There is merit to many of the arguments regarding the usefulness of learning C. Those arguments are well covered in the other comments.

You should learn C because you have the time to, and it will expand your mind. This alone is reason.

link|flag
vote up 1 vote down

Yes, it is a great starting point to better understand both hardware and the underpinnings of interpreted or byte compiled languages, just as learning a functional language such as Haskell or Erlang might help you structure your programs in new and interesting ways. Even if you learn nothing else from the exercise, broadening your perspective can hardly be a bad thing.

Related to increasing your understanding of hardware, I would also highly recommend using an emulator where you can tune the CPU caches to learn more about pipelining and cache characteristics. In college we used a MIPS emulator and a cross compiler for that, but I am sure other options are available these days.

link|flag
vote up 0 vote down

short answer? YES!

link|flag
vote up 0 vote down

In answer to the original question, and the add-on of Is it better to learn C or Assembler?: learn both - write a simple processor simulator in C. The best way to learn any language is to have something you want/need to do with it, and you're already a programmer anyway so you should pick up C practically without noticing as you figure out how to emulate a simple processor. Then write something in assembly for your simulated processor.

link|flag
vote up 0 vote down

Of course!

link|flag
vote up 1 vote down

In your particular case, your favorite languages are Python and Scheme. The most used distribution of Python is CPython which is written in C. There are also many C based Scheme implementations. http://www.cs.indiana.edu/scheme-repository/imp.html

I've found C useful when installing many python packages. If you ever need to write your own python package you may have to do some C coding. This is also useful, if you ever need improve the 20% of your code which is "slow" you will want to do it in C.

C is the foundation language for many other general purpose languages like C++, Python, Java, Perl, PHP, etc. Aswell as specialized languages like CUDA, Specman etc.

It's hard to talk about C without talking about C++. These combined languages have offer the many of the most advanced features of modern programming languages as well as a uber programming control.

C/C++ are ranked #2 and #3 on the TIOBE index

link|flag
vote up 1 vote down

I think you should learn C, but I think you should learn assembler before C. One of the advantages of learning assembler is you can develop a grasp on how the high level constructs you are using are implemented, which can aid you in making better decisions at times. Now, I don't suggest you write a lot of code in assembler, that's mostly just crazy, but understanding assembler -- any assembler -- is important.

Then the question becomes, which one? Well, because you're not going to be writing production code in it, I personally would opt for a pure simple machine, something as close to a dumb load-store architecture as possible, which would tend to lean you towards the MIPS and other risc architectures, and away from vaxen and especially away from ia32 (intel).

With an understanding of asm (even at a basic level), learning c would be easy, and the mapping of c to assembler is quite transparent and obvious (for non-optimized code, anyways).

link|flag
vote up 4 vote down

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|flag
vote up 15 vote down

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|flag
vote up 1 vote down

Absouletly....

C is neither as library rich as Java, nor as easy-to-implement as Python, but it being a low level language teaches a lot about how things work in a program. One can learn most about stacks and data-structures in C, than any other language. Most of all, it is mother-of-all-languages! :-)

link|flag
vote up 1 vote down

I think C is a valuable and worthy language for anyone to learn. It is like an essential ingredient to a tool-kit.

link|flag
vote up 0 vote down

My advice is to focus first on writing everything in the most productive language you can. For me, this is Python. C and its relatives are becoming niche languages for special case purposes. The number of these cases is dwindling. People claim speed concerns to write C or C++ code, possibly optimizing tight loops and the light, but more and more often I'm hearing stories about prototyping in Python and rewriting in C, and because of the higher difficulty of maintaining the C implementation, their Python "prototype" actually remains faster. For those cases where you could have a difference, usually in small per-function units, there are solutions that you could find more favorable, such as the increasingly popular Cython, the HIT compiler Psyco, and simply learning good optimization techniques. Of course, everything I'm saying here can be equally true about other high-productivity languages.

Now, that isn't to say there are no good reasons to use C. There are important uses it still has, namely in close-to-the-wire coding. Kernel work and modules, tight graphics routines, etc.

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

Unix is to C language as C is to assembly language as assembly is to machine language. If you learn Unix you will begin to understand C. If you learn C you will begin to understand assembly language. So I think C is an excellent pivot point that looks lower-level to Unix and higher-level to assembly.

Take on assembly only if you want to understand down to the machine instructions. But down there it becomes a tower of Babel, because instead of a single C language with HEADERS (*.h files), you have different languages reflecting different machine architectures.

link|flag
vote up 3 vote down

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|flag

Your Answer

Get an OpenID
or

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