I'm a physicist by degree, and I'm working in a computational biophysics lab where everything is written in old school C, so I've been furiously scrambling (with my mind) to keep up and learn some C. I've been working my way through K&R, and it's good, and I think that now, after I have had my mind blown several times, I'm finally starting to understand pointers.

Thing is, the latest edition of K&R is 22 years old. And I get that C itself is more than 30 years old, but I still feel like I'm missing some stuff here. Have there been any significant advances in C coding in the intervening time that I should be aware of? Or am I just being paranoid?

Especially relevant to what I'm doing now would be anything about parallel computing. I've gotten the impression from various places that C has at least some capabilities in that regard, but I haven't come across any really good books or resources on the topic.

So yeah, I think that I've already got the best C book there is, but what's the best modern C book out there? Anyone have any good suggestions?

link|improve this question

2  
BTW this one great classical book is the only reason why C became popular (the language itself does not deserve its own popularity). In software is much more important to understand "why" than "how". Most of things in old languages have historical reasons, so old books can help understand the ways of thinking of ancient programmers better. Most of perks in C were caused by high cost of perforated cards – RocketSurgeon Nov 13 '10 at 4:11
9  
@RocketSurgeon: I actually really disagree; I think the reason why C became (and remains) popular is that it's a very clean implementation of a "high-level" language that is really a very close mapping of extremely low-level operations. C's basic primitives and structures map precisely to specific process operations in the state-of-the-art processors at the time; the simplicity of the mapping and the insight that it brought to things was (and remains) a bellweather of both conceptual and instructional clarity. – Paul Sonier Nov 13 '10 at 6:13
3  
The reason that C became popular is called Unix. There were several other "mid-level" languages around in the 70s (notably BCPL), but the one that succeeded was the one that grew with its purpose: to implement a portable operating system on low-end hardware. And when the OS got popular, so did its language. – larsmans Nov 13 '10 at 12:39
@McWafflestix. This attention to low level matching has historical reason. People of those times could not imagine what compilers can do. Contemporary compilers, I beleive, can even predict CPU cache coherence and million of other things. But we are not twisting the contemporary languages to make it easier for compilers to do it. And I strongly disagree to see C and clarity in one sentence. – RocketSurgeon Nov 13 '10 at 13:21
This is not bound to C, but since you ask about parallel computing and user Larsmans mentions MPI and OpenMP I think you could be interested in DVM system (keldysh.ru/dvm) - it's a preprocesor and environment that creates a metalanguage over C or Fortran 77 and then compiles your metaprogram into plain C/Fortran with MPI. I played with it when I studied in the university and looks like it saves a ton of time writing boilerplate code for paralellizing stuff compared to using MPI directly. – sharptooth Nov 13 '10 at 14:00
feedback

11 Answers

up vote 14 down vote accepted

For parallel programming, C has two de facto standards: MPI for distributed memory (multiple nodes) and OpenMP for shared memory (single multi-processor/multi-core node). There's also POSIX threads, Win32 threads, etc., but for scientific work (heavy computations, little user interaction), OpenMP and MPI are the way to go. Programming in OpenMP can be as simple as

int i, n = number_of_work_units();
double *output = malloc(n * sizeof double);  /* be sure to check for errors */

#pragma omp parallel for   /* perform the following loop in parallel */
for (i = 0; i < n; i++)
    output[i] = perform_heavy_computation(i);

MPI requires more work, since you'll have to decide on communication issues: what data does each node in the cluster need to do its work.

As for learning C, K&R is the classic. Pointers didn't change much in recent years; the most notable changes in the 1999 C standard compared to K&R are perhaps reentrant functions ("safe" functions for parallel/concurrent programming) and a bunch of types including bool, uint32_t, uint64_t, etc.

link|improve this answer
Oh and before somebody downvotes me for downplaying C99: the restrict keywords and lots of other stuff. – larsmans Nov 13 '10 at 1:31
1  
Are there any good textbooks with chapters on MPI? I've found some stuff on google, but honestly I'm a dead tree kind of guy when it comes to book learning. – tel Nov 13 '10 at 4:25
@tel: +1 for the syllogism on book larnin'. :) – Paul Sonier Nov 13 '10 at 6:37
feedback

K&R is still a classic, and (IMO) the best book out there about C. As to parallel computing, you're going to need to look into what libraries out there provide for threading and inter-process synchronization. To be honest, it's a bit of a schlep in standard C; doing this stuff is much easier in higher-level languages nowadays. (This is at least partially because modern higher-level languages have better support for proper abstractions; essentially, the flat memory model implied by standard C leads to some very tricky problems with parallelization. It's not impossible, but doing it well effectively requires a level of discipline and design that is very high.)

link|improve this answer
Agree. I learned C from K&R 2/ed shortly after it was published, and although some swear by Harbison & Steele, I think that book adds a lot of pages but not a lot of value. – superoptimizer Nov 13 '10 at 5:11
@superoptimizer: I feel very much the same way about Harbison & Steele, although I don't have the same level of experience with the H&S as I do with the K&R. There might be an order effect, but I know when I looked through the H&S (admittedly after learning C with the K&R), I felt the exact same thing; (many) more words, but not (much, if any) more information. – Paul Sonier Nov 13 '10 at 6:35
feedback

I've been learning C myself starting this year, coming from a background in high level languages.

I too started reading K&R, but found it was best when being complemented with a few other online resources...

I found it was best to try and do as many of the exercises as possible, and then Google the exercise and see what others have done. You may pick up some neat tricks.

Feel free to also browse my beginner C questions. They may be useful and/or embarrassing :P.

link|improve this answer
2  
I think one of the important things to note about the K&R (2ed) is the absolute density of the information in the book; pretty much every single word in the book is there for a specific reason. Precision is the word of the day with K&R; you can very literally look at any (non-trivial) given word in that book, and find that the word is in fact very precisely chosen, and that it could not properly (in some cases lexically properly) be replaced with any "synonym". And yet, it remains clear and profoundly readable. – Paul Sonier Nov 13 '10 at 6:44
feedback

The only problem with K&R 2 is that it doesn't cover the C99 standard; some new stuff was introduced with C99, although it wasn't the radical improvement that C89 was. Harbison & Steele's "C: A Reference Manual", 5th edition, is up to date with C99 (it's my primary reference). C doesn't have built-in support for parallel operations; larsmans gave some good advice on that front.

And FWIW, its not "old school" C unless it's written using K&R-era function definition syntax:

void foo (a,b,c)
  int a;
  double b;
  char *c;
{
  /* do stuff with a, b, c */
}
link|improve this answer
feedback

These are all on my list:

Peter van der Linden's Expert C Programming

David Hanson's C Interfaces and Implementations

Samuel Harbison's C: A Reference Manual

link|improve this answer
feedback

Most things you learn about C are with the libraries you'll use. You do have the best book but recommending another may not work because it's hard to find one to wrap your mind around. I hate them all.

btw, old school C? I use C every day for everything. Have no need for anything else.

link|improve this answer
1  
Not old school? Maybe if you've been using it for a while. But compared to Python it's a nightmare. I would give my left nut for an equivalent to Python's dictionaries in C – tel Nov 13 '10 at 0:34
2  
@tel - Check Glib. Pretty sure they have it, or something that works well enough for most cases. – Chris Lutz Nov 13 '10 at 0:47
@tel Like I said, most of your time is learning libraries. Python's dictionary is called a map or sometimes an associative array or even a hash in C and is available in libraries. – Rob Nov 13 '10 at 0:47
Although my day job is programming in C++, most of my code looks a lot more like C, and for the first 15 years after I left college I did straight C work. There are much better options than C/C++ for most programming. I write compilers, which is the only reason I use such a low-level language. I'd be using Ruby/Python/Scala/Clojure/Haskell otherwise (and these are my hobby languages). – superoptimizer Nov 13 '10 at 5:13
I'm not disagreeing with you, but the fact that, as you say, "most of your time is learning libraries" is just sort of disappointing; not because of any failing of you, though, but of the inherent crappy design of so many libraries. Libraries don't need to be confusing and difficult to learn, but so very many of them are... – Paul Sonier Nov 13 '10 at 6:48
feedback

I'm actually surprised to see no body mentioned:

C Programming: A Modern Approach - K. N. King

I'm not saying that K&R C book is not book. But a beginner programmer or an intermediate programmer cannot appreciate that book.Moreover the language as changed. The book I mentioned takes a wonderful approach and teaches you the "latest" or "modern" version of C. Even if you are an intermediate programmer. Its completely worth going through it.

As of parallel programming is concerned, its not related to C language. I know all the latest languages (C# 4.0 and C++0x) are incorporating features for shared memory parallel processing system. Its worth noting that C was last updated in 1999 when parallel processing was not as major issue as it is today. So, my statement parallel processing is not related C language is true.

So, my suggestion would be to pick up a parallel computing library suitable for you purposes from http://en.wikipedia.org/wiki/Template:Parallel_computing (APIs section) and get relevant books.

link|improve this answer
feedback

The age of book doesn't mater, C itself endured more years.

link|improve this answer
feedback

Like many other programming languages, C is not just its syntax and standard libraries, it is also its idioms. And, because C is a rather terse language, the idioms are generally more prominent and important than in languages like Java and C#. The way I became familiar with C idioms was by reading and understanding the rationale behind code written programmers more talented than I am. Maybe that'll help you too.

An example of an idiom I'm talking about could be properly writing function-like macros that don't return a value:

#define do_something(x, y) do { \
    int _x = (x), _y = (y); \
    if (foo (_x * _y)) \
        exit (1); \
    else \
        bar (_x, _y); \
} while (0)

I don't think you'll find this in K & R.

link|improve this answer
feedback

The technoplaza tutorials are helpful. They don't teach you how to write a program on your computer, but if you are having trouble with the structure of the language, then I would say that is your best bet.

link|improve this answer
feedback

If you are interested in serious parallel programming I would say MPI and CUDA is the way to go. I'm not so sure about using OpenMP and CUDA together.

Paul

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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