home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_09 / 9n09098a < prev    next >
Text File  |  1991-07-16  |  75b  |  9 lines

  1. int &f()
  2.     {
  3.     int i;
  4.     ...
  5.     return i;
  6.     }
  7. ...
  8. f() = 2;
  9.