home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Small Eiffel 0.4.8 / lib_show / cecil / example2 / c_prog.c next >
Encoding:
C/C++ Source or Header  |  1997-04-13  |  249 b   |  17 lines  |  [TEXT/CWIE]

  1. #include <stdio.h>
  2. #include "eiffel.h"
  3.  
  4. c_prog (void *values) {
  5.   int i;
  6.   int val;
  7.   
  8.   for (i=array_of_int_lower(values);
  9.        i <= array_of_int_upper(values);
  10.        i++) {
  11.     val = array_of_int_item(values,i);
  12.     printf("%d\n",val);
  13.   }
  14. }
  15.  
  16.  
  17.