April 04, 2003
Ron Silliman: Barbarians

Worse I fear by far than this obscene war – just yesterday the world was treated to hearing a mother’s tale of seeing her two daughters, ages 15 & 12, decapitated by U.S. firepower as it ripped through their vehicle that failed to heed what may have been an unclear warning to stop at a “U.S. checkpoint” – will be the “peace” that follows.

More in Silliman's Blog

Posted by Ron Silliman at April 04, 2003 07:07 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: Christopher on January 18, 2004 09:50 PM

We can see an example of this in our code we've written so far. In each function's block, we declare variables that hold our data. When each function ends, the variables within are disposed of, and the space they were using is given back to the computer to use. The variables live in the blocks of conditionals and loops we write, but they don't cascade into functions we call, because those aren't sub-blocks, but different sections of code entirely. Every variable we've written has a well-defined lifetime of one function.

Posted by: Conrad on January 18, 2004 09:51 PM

But variables get one benefit people do not

Posted by: Henry on January 18, 2004 09:51 PM

These secret identities serve a variety of purposes, and they help us to understand how variables work. In this lesson, we'll be writing a little less code than we've done in previous articles, but we'll be taking a detailed look at how variables live and work.

Posted by: Cecily on January 18, 2004 09:52 PM

But variables get one benefit people do not

Posted by: Abraham on January 18, 2004 09:52 PM
-->