home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH07 / A070923.WAV (.mp3) < prev    next >
Waveform Audio File Format  |  1993-10-21  |  323.8 KB  |  1 channel  |  11,025 sample rate  |  30 seconds
Transcription: Objects declared outside of all blocks of code have global scope. The lifetime of a global object begins when it is declared and ends when the program terminates. Storage for global objects is allocated in a reserved data area in memory. The lifetime of a static object also begins when it is declared. Because static objects retain their value when they are out of scope, they live until the program terminates. Static objects are also placed indata area.