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

  1. This strange looking statement has the effect of assigning the
  2. value 5 to x. Because change_int() returns a reference to its
  3. argument, the function can appear on the left side of an
  4. assignment operator.  When change_int() is called, it returns a
  5. reference to x. The value 5 is assigned to this reference.
  6.