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

  1. To pass an argument by value, pass the argument itself.  A copy of
  2. the argument is made in the called function.  This example
  3. demonstrates that if an argument is passed by value and its value
  4. is changed in the called function, the argument still has its old
  5. value in the calling function.
  6.