January 17, 2004

Quiet

It's so quiet I can hear the Kurds.

Posted by Brian Stefans at January 17, 2004 10:03 AM | TrackBack
Comments

This back and forth is an important concept to understand in C programming, especially on the Mac's RISC architecture. Almost every variable you work with can be represented in 32 bits of memory: thirty-two 1s and 0s define the data that a simple variable can hold. There are exceptions, like on the new 64-bit G5s and in the 128-bit world of AltiVec

Posted by: Sybil at January 18, 2004 06:21 PM

Note the new asterisks whenever we reference favoriteNumber, except for that new line right before the return.

Posted by: Lambert at January 18, 2004 06:22 PM

Earlier I mentioned that variables can live in two different places. We're going to examine these two places one at a time, and we're going to start on the more familiar ground, which is called the Stack. Understanding the stack helps us understand the way programs run, and also helps us understand scope a little better.

Posted by: Margery at January 18, 2004 06:22 PM

Earlier I mentioned that variables can live in two different places. We're going to examine these two places one at a time, and we're going to start on the more familiar ground, which is called the Stack. Understanding the stack helps us understand the way programs run, and also helps us understand scope a little better.

Posted by: Edmund at January 18, 2004 06:22 PM

Being able to understand that basic idea opens up a vast amount of power that can be used and abused, and we're going to look at a few of the better ways to deal with it in this article.

Posted by: Pierce at January 18, 2004 06:23 PM