Data vs Code

I'll take an array over a giant switch-case statement any day.

  1. The array definition will be more compact and easier to see all at once.
  2. Defining actions in an array enforces uniformity.
  3. You can put checks in the code to automatically verify that the array definition is complete. (I ...

Simpler C Development Environment

If you're on Windows and you had problems installing Cygwin, there is another package that includes GCC called "MinGW" (minimalist GNU for Windows). Download and run the MinGW installer.

Go through the installer and keep clicking the defaults. It will then download and install several other packages. When the ...

Getting Started in C

Some may argue that C is an outdated language to learn in 2009. I disagree. Learning C requires some degree of understanding how computers really work. And if you can understand pointers, you're ten steps ahead of the game.

This is the first in a series of articles designed ...

Page 1 / 1