home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH07 / A070921.WAV (.mp3) < prev    next >
Waveform Audio File Format  |  1993-10-21  |  316.1 KB  |  1 channel  |  11,025 sample rate  |  29 seconds
Transcription: Objects declared inside a function or block of code are local to that function or block. When a local non-static object is declared, storage is allocated for it on a stack. When a block or function ends, stack memory occupied by associated local objects is released. The amount of data in the stack can vary greatly during program execution. The same bytes of memory can be reused by a variety of local objects whose lifetimes do not overlap. you