home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 December / simtel1292_SIMTEL_1292_Walnut_Creek.iso / msdos / pcmag / vol7n14.arc / FIG2.C < prev    next >
C/C++ Source or Header  |  1988-06-30  |  430b  |  15 lines

  1. /*
  2.    Use values from 1 to 65534 for the small and medium
  3.    models.  Large model programs should one or more
  4.    large_arrays with values of 65534 for all but the last which
  5.    should be from 1 to 65534.  If the 'huge' data type is
  6.    available, use it and set the value as high as possible.
  7.  */
  8. #define ARRAY_SIZE 30000
  9.  
  10. char large_array[ARRAY_SIZE];
  11. main()
  12. {
  13.      /* replace this dummy with your program here */
  14. }
  15.