home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH04 / A04161.WAV (.mp3) < prev    next >
Waveform Audio File Format  |  1993-11-02  |  356.1 KB  |  1 channel  |  11,025 sample rate  |  33 seconds
Transcription: In traditional programming environments, the source code that makes up programs is divided into separate files. Some of these files contain code that is unique to the program, and some, called header files, contain code that is shared among many programs. The program has to be able to make objects that are declared in one file available to code in another file. This section describes how this is done in C++ by including header files files and by declaring objects with the keyword, extern.