The only book that has satisfied my purism is C von A bis Z. However this is in german.

Do you know any book in English which actually uses EXIT_SUCCESS starting with the second example, and which explains very well why

int main(void) {
    return 0;/* and subsequently EXIT_SUCCESS */
}

is the cleanest way to write the "do nothing" program, from the very first page, which also unveils the "magic" behind the standard library by showing what happens with parameters like

-Wall -Wextra -Werror -nostdlib -nodefaultlibs

?

I mean a really good book for purists like me.

Thanks

Addendum

Many of you are right, the C standard doesn't impose a default name for the entry function, it's the linker's default configuration which uses that. Yet is there any book which also explains how this works and why that is the way it is?

Again, I'm not looking for "just mentioning" (in your answers) what such a book should contain, I'm looking for the book itself which clears up all of these things (or at least many of them).

link|improve this question

7  
IMO, using EXIT_SUCCESS as return value of main() is not automatically a sign of a good book. EXIT_SUCCESS is defined by the library, to be used with exit(). The return value of main() is part of the C language, which is very distinct from the C library. The standard says that the return of main() should be passed as argument to exit(), but the C language itself can run without any standard library, in which case makes no sense to use EXIT_SUCCESS. – Juliano Jan 30 '11 at 18:25
1  
Are you actually looking for a book on assembly language? – Greg Hewgill Jan 30 '11 at 18:26
No, on C, but making references to ASM wouldn't hurt. From my POV the best point to talk about it is somewhere either after pointers are introduced, or at the very beginning, when variables are introduced, with small demonstrations in a debugger like gdb or why not, ollydbg. – Flavius Jan 30 '11 at 18:28
2  
I'm curious about what the book says about why EXIT_SUCCESS should be returned instead of 0? – Michael Burr Jan 30 '11 at 20:00
feedback

5 Answers

up vote 3 down vote accepted

I think the best book on C is Harbison & Steele's "C: A Reference Manual" (though I'll admit I don't have the 5th edition; I have several copies of the 4th edition that replaced several copies of the 3rd edition...).

However, it's not a tutorial book, it's a reference. It's quite rigorous, and pays close attention to the standards. It also contains a lot of information about "traditional C", so it covers a lot of non-standard items (but still in a more or less platform independent manner). The great thing about the coverage of non-standard material is that they make clear note of when they're discussing traditional features and how they differ from standard features.

It also contains discussion of areas of C that might have differences with C++.

I should get updated copies - they cover the C99 standard which my 4th edition does not.

link|improve this answer
Upvoted for actually mentioning a book as asked. Thanks – Flavius Jan 30 '11 at 20:52
feedback

The C standard requires that main() return int in case of a hosted system (running on an OS), or that it return void on a hostless system (i.e., in an embedded system, or in the source code for an OS).

A good book about C in general would mention this. A less generic book about PC programming for non-purists would state that main() should return int, without any explanation. Perhaps even incorrectly stating that main() must always return int, without even mentioning hosted/hostless systems.

Also, define "C". Most books are about C90 and then your code wouldn't even compile, as you are using C99 comments.

link|improve this answer
1  
+1 for the C99 point, and +1 for the exasperating Political Correctness sense of ‘PC programming’. Whoops, I ran outta plusses! ☺ – tchrist Jan 30 '11 at 18:41
3  
your first paragraph is incorrect: the C standard does not place any restrictions on name and type of the startup function in freestanding environments – Christoph Jan 30 '11 at 18:56
@Christoph Fair enough :) But why on earth would you want to return anything but void when you have nothing to return to? – Lundin Jan 30 '11 at 20:08
2  
@Lundin: there might be non-C code which does something useful with the return value; on x86, you need an asm loader to enter protected mode anyway, and you'll probably do more work after your C-kernel returns... – Christoph Jan 30 '11 at 20:36
1  
@Lundin: not by definition of the C standard; also, all implementations of the C language I know of provide a runtime library which includes non-C code (eg some parts of libgcc are implemented in assembler) and I don't know any OS which is pure-C, meaning there aren't any non-hosted environments, making the definition useless.. – Christoph Jan 30 '11 at 20:55
show 6 more comments
feedback

I've heard excellent things about Pointers on C

Also I might add, the magic you're asking about with the arguments is more GCC-specific magic and a C book isn't really going to cover that stuff I imagine. man gcc will help you more with those.

-Wall -Wextra -Werror are all just flags to produce more warnings and make it harder to compile code that may contain errors by casting stuff incorrectly, etc.

link|improve this answer
you're forgetting -pedantic, which enables standards-mode – Christoph Jan 31 '11 at 13:26
@Christoph Was just referring to the ones in his example. – mikelikespie Jan 31 '11 at 19:34
feedback

There is no possible book other than a nice old tattered copy of K&R for C puristsʷᵗᶠᵗᵐ — and preferably a well‐antemillennial one at that.

link|improve this answer
feedback

While not specifically about C, I'd check out this Stack Overflow question from a while back, as it contains a ton of useful programming books and programming suggestions.

K&R's The C Programming Language is the seminal reference on C (though the language has changed some since it was last revised), but it doesn't do things exactly as you described them (ie with EXIT_SUCCESS). Since you already seem to know how the compiler flags work and the magic behind such stuff, I don't see why another book covering the exact same methodology is necessary--in fact reading multiple books that present different methodologies can really help the way you program in general.

link|improve this answer
In order to recommend it to other non-german speaking friends of mine who want to start programming the right way. Since you know K&R doesn't fit my criteria, and you've still mentioned it, I'll have to downvote your answer. Sorry. – Flavius Jan 30 '11 at 18:26
2  
K&R is also a horrible book written in a time when mankind didn't even know about good/bad programming practice. Because of this, it is entirely unsuitable for anything but nostalgia. – Lundin Jan 30 '11 at 18:35
4  
@Lundin: are you joking? K&R's C book was written in a time when at least two particular men knew enough about programming to design and thoroughly but tersely document a language which will outlive them both. It remains a useful reference manual for programmers using C today. – John Zwinck Jan 30 '11 at 18:52
@Lundin: you seem to be under the impression that language-design has significantly evolved during the last decades; looking at Lisp, ALGOL-68, Smalltalk-80 or the development from CPL (a typed language) over BCPL and B (both typeless) back to the typed C shows that there hasn't been as much innovation as one would expect - it's just that the more advanced languages are now actually useable for general-purpose programming because of hardware evolution... – Christoph Jan 30 '11 at 19:20
2  
@Flavius I completely disagree. A good book on programming in C does not and should not cover how to use a compiler properly any more than it should cover how to use a text editor like Vim or Emacs properly--these are tools, not programming practices. K&R C is not only useful for historical purposes. – Dylnuge Jan 30 '11 at 22:59
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

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