home *** CD-ROM | disk | FTP | other *** search
/ C by Discovery (4th Edition) / C_By_Discovery_4th_Edition.tar / C_By_Discovery_4th_Edition / _DISK_ / ch8 / incr.c < prev    next >
C/C++ Source or Header  |  2005-06-16  |  190b  |  11 lines

  1. /*                                incr.c
  2.  */
  3.  
  4. /* External Variable Declarations */
  5. extern int x;                                      /* Note 1 */
  6.  
  7. void incr( void )
  8. {
  9.      x++;
  10. }
  11.