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).
EXIT_SUCCESSshould be returned instead of0? – Michael Burr Jan 30 '11 at 20:00