January 26, 2003

Skid 25

marking things on clipboards
are the kids
vague, i am, suspicious
choreographers lack moxie
the splint of
dawn seriously undermines it
a certain kitsch obtains
token pastures
derange the three windows
i'm above that
screaming in hoop skirts
marking things on old clipboards

what to do about the failed
go right attitude now
punctual as a placebo
(i was going to say placenta) why
abbreviations
are the mannerism of today
instead of writing, graffito
and shorter
less encrypted goodbyes
(who cares about rituals of mourning)
words attain their cots
with a prescient, de rigeur modesty

problems with design
will lead the peasant dictator
to alternate plans
submitted by spam junkies
"mothers to the neighborhood"
they have "fabulism first"
tattooed to their lapels
other distractions include translucent hands
like ladies' hands
they bust each other up about this
is the previous trope any less
maverick, after all i've said, ripe with analysis?

Posted by Brian Stefans at January 26, 2003 02:35 PM
Comments

Our next line looks familiar, except it starts with an asterisk. Again, we're using the star operator, and noting that this variable we're working with is a pointer. If we didn't, the computer would try to put the results of the right hand side of this statement (which evaluates to 6) into the pointer, overriding the value we need in the pointer, which is an address. This way, the computer knows to put the data not in the pointer, but into the place the pointer points to, which is in the Heap. So after this line, our int is living happily in the Heap, storing a value of 6, and our pointer tells us where that data is living.

Posted by: Abraham at January 18, 2004 09:03 PM

When compared to the Stack, the Heap is a simple thing to understand. All the memory that's left over is "in the Heap" (excepting some special cases and some reserve). There is little structure, but in return for this freedom of movement you must create and destroy any boundaries you need. And it is always possible that the heap might simply not have enough space for you.

Posted by: Emmanuel at January 18, 2004 09:03 PM