up vote 137 down vote favorite
52
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

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
feedback

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
feedback

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
feedback

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
feedback

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
feedback

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
feedback

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
feedback

Yes.

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

link
feedback

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
feedback

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
feedback

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
feedback

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
feedback

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
feedback

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
feedback

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
feedback

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
feedback

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
feedback

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
feedback

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
feedback

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

link
feedback

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
feedback

I think that the great advantage of learning C (or C++ as well, in my opinion) is that it lets you understand what's happening really when you run your program: allocation issues, pointers, references and so on. With high level languages this is hidden and allows you to program without having it in mind...which is not good at all if you want to be a real programmer.

link
feedback

Yes!

Every new language I've learnt has had a language feature that's given me a Eureka moment that has, quite simply, made me a better programmer. It's just the same as when, say, DRY finally clicks, and your code instantly becomes twice as maintainable.

If you're working in Java and suddenly realise that what you really need is

  • a closure,
  • a function pointer,
  • a Lisp macro,
  • eval,
  • type inference,

then learning a new language has made you that little bit wiser, which is never a bad thing.

link
feedback

C, sure. maybe D after. Know List too. Assembler? Z80 for a fundamental introductory and/or ARM for fun and a more complex system. x86, only if you got a job for this or if you hate yourself.

link
show 1 more comment
feedback

There is one particularly good reason, as a Java programmer, to learn C and the POSIX APIs that (typically) go with it: It gives you the ability to use JNI.

link
feedback

I would suggest learning a little of assembler first. It helps you very much to understand pointers, bit manipulations and ways to optimize an algorithm. x86 will do, because it's better documented and can be easily tested. And please use the NASM compiler (Netwide assembler), not MASM or TASM, because it is much more intuitive, and does not try to make a high level language out of assembler.

link
feedback

I think learning something about c is important. C can help you understand software more deep.

link
feedback

Without the understanding of machine code (assembly), C is just another C-like language. You don't have to learn assembly, but you should know how does a modern processor work: instructions, registers, interrupts, DMA etc.

So, if you know, how many bits are in a byte, C is extremly useful, because it's real or direct. I mean what you write in the program source, it will be the object/executable program. Also, you have to deal with low-level issues, like linking or inter-language call, etc.

There's a saying, that a program written in C has 90% speed of a program written in Assembly; yes, but it's only true, when you know the underlying arhcitecture of the system. E.g. if you use associative array for storing huge number of items with continous numeric ID, it will be slow and ineffective, even coded in Assembly.

The next step should be understanding C++, which is probably the best "performance/price" language; I mean that it's near as strict OOP than, say, Java, but there're no general performance loss compared to C.

Finally, don't forget: computers can run only machine code. C/C++ is a straight path to create that code.

link
feedback

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
feedback

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
feedback

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