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

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

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

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

Yes.

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

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 3 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 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 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 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 0 vote down

No.

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

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

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

Your Answer

Get an OpenID
or

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