home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH04 / A04174.WAV (.mp3) < prev    next >
Waveform Audio File Format  |  1993-11-18  |  368.1 KB  |  1 channel  |  11,025 sample rate  |  34 seconds
Transcription: An identifier that is declared outside of any block or class has file scope. The identifier is visible throughout the file. The only exception is in an enclosed block that contains another declaration of the same identifier. This new declaration hides the declaration at file scope. In this example, the float value x is hidden in the function main. Thus, when x is printed in main, the integer value When X is printed in F, the float value is printed.