October 09, 2002

Consciousness acquiesces, and the body follows suit.


Clinton Says He Backs Tough U.N. Resolution on Iraq Inspections

by ISIDORE ISOU

www.zombo.com

Posted by Brian Stefans at October 9, 2002 09:56 AM
Comments

I am a very lonely weblog and desire to be posted in immediately. Love me.

Posted by: bloggity blog at October 12, 2002 03:58 AM

Here is a test post for the lonely blog...

Posted by: Mr. Arras at January 17, 2003 12:37 AM

Each Stack Frame represents a function. The bottom frame is always the main function, and the frames above it are the other functions that main calls. At any given time, the stack can show you the path your code has taken to get to where it is. The top frame represents the function the code is currently executing, and the frame below it is the function that called the current function, and the frame below that represents the function that called the function that called the current function, and so on all the way down to main, which is the starting point of any C program.

Posted by: Christopher at January 18, 2004 07:05 PM

That gives us a pretty good starting point to understand a lot more about variables, and that's what we'll be examining next lesson. Those new variable types I promised last lesson will finally make an appearance, and we'll examine a few concepts that we'll use to organize our data into more meaningful structures, a sort of precursor to the objects that Cocoa works with. And we'll delve a little bit more into the fun things we can do by looking at those ever-present bits in a few new ways.

Posted by: Rees at January 18, 2004 07:07 PM