5
votes
Manpage scandir() prototype weirdness
Actually, there's no such constraint that you can't pass a pointer to an inline function. The inline keyword serves only as a hint to the compiler to inline calls when it can.
The problem i …
6
votes
What Programming Book would you NOT recommend to Developers?
C: The Complete Reference by Herbert Schildt, see C: The Complete Nonsense
The Annotated ANSI C Standard, annotated by Herbert …
6
votes
What should main() return in C/C++?
The accepted answer appears to be targetted for C++, so I thought I'd add an answer that pertains to C, and this differs in a few ways.
ISO/IEC 9899:1989 (C90):
main should be decla …
4
votes
What are some good resources for learning C beyond K&R
Try C: A Reference Manual by Harbison and Steele. It covers the ISO/IEC 9899:1999 (C99) standard that is more recent that K&R's la …
