home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH01 / A01105.TXT < prev    next >
Encoding:
Text File  |  1993-10-27  |  445 b   |  8 lines

  1. In modular programming, blocks of data and code are often kept in
  2. separate files, or modules.  The program should access data in a
  3. module only by calling functions of that particular module.  The
  4. intent is that the rest of the program should not be affected by 
  5. changes to a function. However, the main program must still 
  6. ensure that the data in a module is initialized before it is 
  7. used.  Omitting this step is often a source of bugs.
  8.