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

prev 1 2 3
vote up 0 vote down

Of course!

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

You should learn C if you have a chance to use it, otherwise focus on what you think is relevant for your current (and possible future) projects.

Although I have extensive experience using C in embedded development I can say this: I would not go and get a driving license for trucks if I am driving regular limousine cars.

link|flag
vote up 0 vote down

I say yes too.

The C is good way to understand the machine. Of course, assembly may be better. But it is not popular like C in development.

link|flag
vote up 0 vote down

It is a lot more common I believe for programs to run on C. It's the original I think (right?) which is open source and then you can learn other C-based languages.

After you learn to program in C you can learn C++, C# or even Java.

if you want to program as close to the Operating system as possible, learn C to program an operating system.

it's the fundamental language for Operating systems such as linux, windows and even Mac OSX.

and after you learn it, as I said, it leads to other programming languages easily.

C is easy to learn and just requires some time to get used to. Plus after learning it, you can actually study C based languages such as Java, which I know you know, so it's similar anyways. Then you can learn how Java actually works, and maybe learn more about how to program better. :)

link|flag
vote up 0 vote down

Yes, everybody should learn C.

It will teach you to appreaciate the managed execution of Java and .Net.

Take a look at assembly too, just to know what it is.

The relation between them is best described by this quote:

"C combines the power of assembly with the flexibility of assembly." (Kim Øyhus)

link|flag
vote up 0 vote down

I did C after learning Java (as a student). The C Programming Language book is invaluable and will be nearly all you need (combined with this helpful website :)). I'd say yes as there is not much reason not to.

link|flag
vote up 0 vote down

Yes, you should. C is timeless language. Better when it come with assembly.

link|flag
vote up 0 vote down

If you are not learning the language for practical reasons, then you should consider assembly on a simple architecture. The basics of C are very much similar to the basics of C++, and you won't learn nearly as much as from assembly. If you want very specific advice, go grab a free assembler/simulator (Such as Easy68k) and make your first console program in assembly! It will be simple enough to figure out on your own yet complex enough to extrapolate to more advanced architectures such as the x86 you're working on.

link|flag
vote up 0 vote down

If the reason behind learning a language is to understand the machine, I'd say learn assembly. If the reason is to learn core programming concepts, I'd say spend time with the core of C, i.e. pointers, memory management, etc. and then move on to C++. From my experience, I appreciated Java so much more because of my C++ background. The problem isn't that C++ doesn't allow things like interfaces, it's that they have to be consistently applied and the language makes this difficult. Yes you can define abstract base classes but unless you have the entire maintenance team on the same page of rules, like declaring virtual destructors, you end up feeling like you're working with uranium without your lead undies. What the gung-ho C/C++ coders aren't telling you is how many scars they got by learning the hard way how to do it the 'right' way.

link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

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