home *** CD-ROM | disk | FTP | other *** search
/ Software Collection (I) / TOOLS.iso / c05 / 1.img / A0.C next >
Encoding:
Text File  |  1980-01-01  |  218 b   |  22 lines

  1. main()
  2.     {
  3.     int    x;
  4.     double    y;
  5.     double    z;
  6.     int    stopc(void);
  7.     x=32767;
  8.     stopc();
  9.     y=-1.23e-30;
  10.     stopc();
  11.     z=10.8e+30;
  12.     stopc();
  13.     x=-32768;
  14.     stopc();
  15.     x=-100;
  16.     stopc();
  17.     x=-1;
  18.     stopc();
  19.  
  20.     exit(0);
  21.     }
  22.