home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_01_01 / 1n01078a < prev    next >
Text File  |  1990-05-17  |  268b  |  19 lines

  1. #include "stdio.h"
  2.  
  3. int addup(int a, int b);
  4.  
  5. int main()
  6.      {
  7.      int x = 1, y = 2, z = 0;
  8.  
  9.      z = addup(x,y);
  10.      printf("x = %d, y = %d, z = %d",x,y,z);
  11.      return 0;
  12.      }
  13.  
  14. int addup(int a, int b)
  15.      {
  16.      a += b;
  17.      return a;
  18.      }
  19.