home *** CD-ROM | disk | FTP | other *** search
/ C++ for Dummies (3rd Edition) / C_FD.iso / CHAP02 / CHAP02_3.C < prev   
C/C++ Source or Header  |  1996-09-02  |  190b  |  15 lines

  1. // Chap02_3.c
  2. void fn(int *pI)
  3. {
  4.    *pI = 10;
  5. }
  6.  
  7.  
  8. int main()
  9. {
  10.    int i = 0;
  11.  
  12.    fn(&i);     /*this passes the address of i*/
  13.    return 0;   /*now the value of i is 10    */
  14. }
  15.