home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 11 / CDACTUAL11.iso / cdactual / demobin / share / os2 / XCO212P / SAMPLES / CSET / C_TEST.C next >
Encoding:
C/C++ Source or Header  |  1996-03-05  |  271 b   |  14 lines

  1. /*
  2.   Example of multi-language programming: C function is called from M2
  3. */
  4.  
  5. #include <stdio.h>
  6.  
  7. int c_func(int a, int b)
  8. {
  9.         printf("\nThis is a C function called by M2 procedure\n");
  10.         printf("c_func (%d, %d)\n", a, b);
  11.         return a+b; 
  12. }
  13.  
  14.