ANSI/ISO/IEC 9899-1999 - Buy a PDF version of the official C programming language standard from the ANSI Electronic Standards Store.
Basics of Compiler Design - Freely available book written for use in the introductory compiler course at DIKU, the department of computer science at the University of Copenhagen, Denmark. (Torben Mogensen)
Bugslayer, MSJ, August 1998 - Crash handlers are those routines that can gain control right before the application shows that nice fault dialog that drives your users crazy. While the exception handlers are C++-specific, the crash handlers work with both C++ and Visual Basic®-based code.
Dynamically-Valued Constants: An Underused Language Feature - Discusses the benefits of using this construct. A sample of actual C++ code is measured to see how often dynamically-valued constants are used, and how often they could be used. [The Internet Archive]
Stream Thy Strings - In this tutorial, Bjorn and Matthew show the proper use of std::stringstream, and extol the virtues of making your classes streamable.
Under the Hood: DELAYLOAD Linker Option - Executables that use the /DELAYLOAD option don't implicitly link to the DLLs that you specify with /DELAYLOAD. Instead, the DLL isn't loaded until the first call to one of its functions. (December, 1998)