home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_01_06 / 1n06009b < prev    next >
Text File  |  1990-09-26  |  255b  |  21 lines

  1.  
  2. #include "stdio.h"
  3.  
  4. inline int add(int a, int b)
  5.     { 
  6.     return a + b; 
  7.     }
  8.  
  9. int main()
  10.     {
  11.     int (* add_ptr)(int, int) = add;
  12.  
  13.     int c = add(1, 2);
  14.     int d = add_ptr(3,4);
  15.  
  16.     printf("%i %i",c,d);
  17.  
  18.     return c;
  19.     }
  20.  
  21.