C
C Traps
Submitted by Kirk Zurell on Fri, 2008-07-25 18:10. CC Traps and Pitfalls by Andrew Koenig is an interesting compilation of C-isms: quirks of the C language that can impact the programs you write.
Reading C type declarations
Submitted by Kirk Zurell on Fri, 2008-07-18 13:21. CThis article gives a plain-language way to read type declarations.
Exceptional Programming
C | FAE | interruptsWhat happens to high-level language programming when computer architecture changes? Walter Banks and Kirk Zurell recount the challenges of accommodating novel interrupt architectures in C for embedded systems.
Threads in C
C | threadsOverview
Threads in C require the following:
- A thread declaration, with a dispatch expression.
- A thread function (either a macro, function, or other code).
C versus Assembly
assembly | C | FAE | RS08This article describes a test we perform on our Code Development System compilers to test code generation. As a side benefit, it proves that C can match assembly, and beat it, even unexpectedly...

July 2008: