home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH04 / A04132.TXT < prev    next >
Encoding:
Text File  |  1993-11-29  |  328 b   |  6 lines

  1. An array name is the identifier of a pointer.  Therefore you
  2. cannot pass an array by value.  If you pass an array to a function
  3. and modify elements of the array within the function, the array is
  4. changed in the calling function.  In this example, the function
  5. change_array() increments the value of an element of the array.
  6.