vote up 18 vote down star
12

For those who know or are learning C: Why did you choose to learn C?

Was a school or job requirement? Curiosity? Boredom? Personal growth? ...

I'm especially curious to know how many learned it to better understand the inner workings of their language of choice. If this is your reason, was it prompted by Joel's suggestions?

flag
5  
I hope no one learned C just because Joel mention's it all the time. That would be super lame. – Brian Gianforcaro Apr 22 at 4:51
20  
For the girls... – consultutah Jun 26 at 22:22
4  
"It seemed a good idea at the time" – quant_dev Jun 26 at 22:26

97 Answers

vote up 0 vote down

I first learned C because at the time I wanted to learn C++ and back then it was suggested to me that one should learn C and then C++.

I'm glad I did though, because so much of the software I write today still requires (for the most part) C:

  • Windows device drivers
  • hard real-time applications on embedded systems
  • UNIX kernel modules
  • firmware on micro-controllers
link|flag
vote up 1 vote down

Because it's fast.

link|flag
vote up 0 vote down

C was my second programming language at Imperial College during my first year of Electrical and Electronic Engineering degree. They taught us Pascal, then C and finally C++/Java. This later become useful for a third year embedded design project as part of my BSC project.

link|flag
vote up 0 vote down

I learned it as part of a HNC in Electronic Eng I took on a day release course back in the early 1990's. We had a pretty good lecturer which was essential since we never touched a computer during the entire course ! I went out and bought myself a copy of "Turbo C" to play with it home and it all made sense but I remember that a lot of the other course members struggled. Oddly the first programming we did for that qualification was 8085 assembly language a year before.

Just one of the many joys of British Polytechnics.

link|flag
vote up 23 vote down

After learning A and B it seemed to be the logical choice. Or at least that's what my pre-school teacher told me at the time. I just wanted cookies.

link|flag
4  
+1 wish i'd gone to your preschool! – kjack Apr 22 at 21:47
1  
But why just stop at C? :) – Rob Sanders May 15 at 13:19
1  
LOOOOOOOOOOOOOOOOOOOL! – Andrea Ambu Jun 4 at 20:18
1  
Followed by C++? That can only mean more cookies right? – xenon Jul 11 at 11:33
show 1 more comment
vote up 0 vote down

Because it was how you wrote any sort of reasonable program on the Amiga. I mean, you could do it in BASIC, and there was okay library support for that, bit if you wanted to do anything sophisticated or performant at all, you pretty much had to do it in C.

That and, at 17 years old, I thought I was finally beyond BASIC and wanted to try something more sophisticated.

I was never very productive in C, though. Besides a bit of C++ in university, I didn't write significant amounts of C code till I got a job. (And at that point, it turned out to be a very useful skill to have).

link|flag
vote up 1 vote down

I started with C because it was the first language I stumbled across back when I was 11ish years old (I am still so thankful for that!). I bought Borland 5.0 from Best Buy with my allowance. Before that, I was building push-pull audio amplifiers - I guess programming was just a much less expensive logical progression.

Whatever the case: C/C++ has kept me happily employed ever since. It’s amazing what you can do once you conquer C!

link|flag
vote up 0 vote down

C was actually the last programming language I took a course in. Ironically before starting to maintain legacy code written in ANSI C, I decided that in order for me to really become more actualized as a programmer I needed to be able to grok the concept of pointers and memory management. All of my education and experience was with languages with garbage collection (Java, C# etc.) and I really needed to get "closer to the metal" without delving into a low-level language like assembler.

In sum, I'm glad I did--not just for the obvious purposes of my job but as mentioned before C strips away a lot of abstraction and enables you to grasp more thoroughly what happens under the hood, as many popular language interpreters(Ruby, PHP, Python) and operating systems are written in C.

Learning C for the programming practitioner is analogous to learning Latin is for the linguist (save the fact that C is far from dead!).

By the way--ditto to the comment about the K&R. It's the definitive work.

T.

link|flag
vote up 0 vote down

In 1982, someone handed me a desmet c-compiler on a 5-1/4" floppy.

I was writing in COBOL and compiled BASIC at the time. I wanted to show my kids the difference between an interpreted language and a compiled one. A simple program, to count from 1 to 10000.

First, interpreted Basic. . . and wait for the answer Then, BASCOM (compiled Basic) and wait for answer, although not as long.

OK, let's try C. Compile it, and run it. Holy Crap!

I never wrote another BASIC program.

I didn't have a COBOL compiler on my IBM PC 8088, COBOL was on a WANG mini -- but I very quickly became aware that C programs were a lot smaller for the same task.

Working on a PC with quick edit-compile-run cycles did wonderful things for my productivity. (Yes, oh a 5MHz 8088).

I'm still writing almost exclusively in C.

link|flag
vote up 0 vote down

I wanted to write a Pascal compiler.

I was high school and couldn't afford any of the commercial Pascal compilers. There was a free compiler called Tiny Pascal but it was worthless for any real work.

So, I decided to write my own.

I purchased a copy of the Software Toolworks C compiler ($39.95) and set about writing a Pascal compiler with it. By the time I had written the lexical analyzer and started working on semantic analysis & code generation, I realized that C was so much more flexible that I forgot all about Pascal and dropped the project.

link|flag
vote up 0 vote down

For a professional application where speed and closeness to the processor was vital (doing real-time video processing with 33 MHz processors and 640Kb RAM!!) there really was no better option, rather than going assembly-insane. It wasn't really any question of options, really.

link|flag
vote up 0 vote down

Because it was there, it dazzled me with its inherent beauty, and since it indeed was a language that was easier to be productive in than MC68000 assembly, which was what I mostly used at the time I started learning C.

link|flag
vote up 0 vote down

I was given a choice between C and VAX MACRO-32, (not to mention BLISS, and TECO). I was encouraged by the hackers around me to choose C for practical work, but to learn as much as possible about as many other languages as I could.

I never wrote a line of MACRO-32, but I did maintain a real application in MACRO-11 for PDP-11's running RT-11 and TSX+. I have written non-trivial programs in TECO on that same PDP-11. Thankfully, I never had to write a line of BLISS for either the PDP or the VAX, but I did once have to read some to answer a question about a utility that wasn't covered in the documents. VAXen at the time commonly shipped with a copy of the VMS source kit (for the kernel and most system utilities) compiler listings on a deck of micro-fiche, and I still have a copy in a drawer somewhere.

Somehow, I did avoid being traumatized by early exposures to BASIC and FORTRAN while in high school...

Since I ended in embedded systems, I have never regretted learning C as a first "real" language.

link|flag
vote up 0 vote down

C was a part of my college curriculum and that's how I started learning C. I learned most of the programming concepts through this language and even today (I have worked with C++, Java, ROR, etc) I love this language the most. Simply the best.

link|flag
vote up 0 vote down

To get a huge consultation fees when the 2038 year problem arrives!

link|flag
vote up 0 vote down

Because I love learning from my mistakes. C gives you plenty of opportunities to make mistakes if you aren't careful.

link|flag
1  
C most certainly allows you to make more mistakes! – Dinah Apr 24 at 12:57
vote up 0 vote down

1) it was the language to program Windows in (when I started with Windows 2 and 3)

2) it was possibly the most powerful language at the time (very subjective, but to do what I wanted, it was the next best thing to assembler)

3) it was low level enough to do anything.

4) it was fun

5) it was a gateway to understanding how the computer worked in a more structured manner than Assembler

link|flag
vote up 0 vote down

I learned Borland Pascal first, around 1992. There was not much Pascal in Dr. Dobbs and programming books, so I learned C and C++ to be able to absorb more books and articles about programming.

link|flag
vote up 0 vote down

I was finishing up my masters in math and needed a couple of courses. There happened to be a C course that fit into my schedule so I took it. My main motivation was partially that that it seemed like that sort of thing one should know (before starting my Masters I'd been passed over for a job I wanted in part because I didn't know C) and mainly that while writing numerical code in matlab or python is both quick and easy it doesn't run very fast, so knowing something that was fast would probably be quite handy.

After having taken the first course I went on to take the advanced course as well and basically came to the conclusion that I really liked programming in C.

link|flag
vote up 1 vote down

Finding out how much of today's software either was 1) influenced by it, 2) abstracted by it, 3) inherited directly from it or 4) created with it.

Anywho, it seems to be the backbone of many languages/ideas/methodologies... can't be a bad thing to learn I think.

link|flag
vote up 1 vote down

At the time--it was the only game in town really. Virtually all new coding for PCs was done in C.

link|flag
vote up 1 vote down

I switched to C from Pascal when I started programming for Windows 3. The only available good book at that time was "Programming Windows" by Charles Petzold. All samples was on C. So I had no choice ;-)

link|flag
vote up 1 vote down

I needed a compiler for some odd embedded device, and I couldn't use a suitable Pascal.

Learning the inner workings was not so much of a problem, since it maps 1:1 to Pascal.

The usual syntax gotcha's like = vs == (and most importantly, the routine to avoid making them all the time) took some time longer. And still.

link|flag
vote up 1 vote down

I started learning C because I wanted to program video games. All of my research at the time seemed to indicate that if you wanted to be an SE for console and PC game development, then C and C++ were the ticket.

link|flag
vote up 1 vote down

I started learning C because I was annoyed at the limitations of the Pascal compilers I was using. However, the C compiler I had at the time (on a TRS-80 Model 4 running CP/M) was excessively awkward to use, so I didn't get very far.

When I got to grad school, it was what everybody was using. Most of the intro to programming courses were in C, and all the neat available software I was interested in (this was after Richard Stallman was pushing Free Software, but before "open source" was used as a near-synonym) was in C. I did find that I didn't want to learn vi and C at the same time, so I learned C using Lightspeed C on my Macintosh SE.

link|flag
vote up 1 vote down

In college my first language was assembly, but as I worked more on embedded systems I realized that C would help me to make more portable and easier to manage code. C is great for low level work (I do embedded programming), and is very close to assembly which I like.

link|flag
vote up 0 vote down

I needed to use C at work, at the same time it was the hot language at my University. The entry level Comp Sci classes were still in Pascal but within 2 years they switched over to C (late 80's). We had a huge VAX cluster and a couple of little BSD VAX 780's at school and everyone wanted to use the Unix machines. All the hot jobs after graduation demanded C.

At work, C was the best way to wring Unix Workstation performance out of 286's and 386's. A PC was 2 grand and a Unix Workstation was $40K. Any other language was a better choice, it could be argued, assuming you were making that choice on a big, fat, expensive Unix workstation like Masscomp/SGI/Sun/Apollo*/Whatever. (But not a VAXStation. There were no good choices for a VAXStation, because no matter what you chose, you were still stuck on a VAXStation).

Don't forget, C is everyone's favorite portable Macro Assembler for DEC-like CPU's. Comparing it to high level languages just isn't fair. Remember CPU's ran from 20MHz to 90MHz and the pre-Synchronous DRAM was slow, slow, slow. C was the only option for both portability and performance. If you chose Pascal you had to write to a C API anyway. If you chose Ada you got stuck with a 500K runtime link linked to your program (effectively tripling its size). If you chose Smalltalk it wasn't leaving the University environment.

*OK So Apollo wasn't exactly Unix. It was still better than using a VAXStation.

link|flag
vote up 0 vote down

In the days of yore, it was the only language that really allowed you to exploit the capabilities of the machine you were using, especially if you wanted to do graphics programming. Whether I found myself on PC's, Sun's or when I got my first dream job coding phigs/GL for SGI (R.I.P) in the late 80s/early 90's you had to use C.

the relative portability also helped, so if you had a toolbox of goodies that made your life simpler, C would be a good bet to have it working in short order on any new machine/architecture you might encounter.

It was also the fun and productive language to code it - 5000 lines of C was joy and could do so much in those days. 5000 lines of fortran, pl/1 or cobol in those days seemed more like a tax audit and 5000 lines of assembly, while very very fast was more like some form of morse code - C had the right amount of expressiveness that you can understand WHAT was being done and not how.

link|flag
vote up 0 vote down

I was 14, found a book at the library about c-programming and read it. That was what got me stuck on programming.

When i became old enough to really understand programming, it was to late.I had become an cprogrammer.

Somedays i wish that book had been about fishing, visual basic or motorcycles. But i suppose thats the irony of fate.

link|flag
vote up 1 vote down

I actually picked up a C++ when I was 11 and it was basically C with cout, cin, new and delete up until the end of it where they explained a bit of STL.
I never found a good use for it since I like OOP too much.
yeh you can do that with C as well but it's a pain in the ass.
I actually see no reason to learn C by itself, it's useful if you are used to it but you can also program embedded/RT in C++ and it will be pretty much the same imo.

link|flag

Your Answer

Get an OpenID
or

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