home *** CD-ROM | disk | FTP | other *** search
/ C++ for Dummies (3rd Edition) / C_FD.iso / CHAP04 / CHAP04_2.CPP < prev    next >
C/C++ Source or Header  |  1996-09-02  |  170b  |  14 lines

  1. // Chap04_2.c
  2. void changeArgument(int i)
  3. {
  4.    i = 10;
  5. }
  6. int main()
  7. {
  8.    int i = 5;
  9.    changeArgument(i);
  10.    //the value of i here is still 5
  11.  
  12.    return 0;
  13. }
  14.