home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib1 / v_01_06 / 1n06009b < prev    next >
Encoding:
Text File  |  1995-11-01  |  255 b   |  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.