home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_04 / 1004094a < prev    next >
Text File  |  1992-02-10  |  148b  |  11 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. #define STACK_SIZE 4
  5.  
  6. static int stack[STACK_SIZE];
  7.  
  8. static size_t stack_ptr1 = 0;
  9. static size_t stack_ptr2 = STACK_SIZE - 1;
  10.  
  11.