home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / CEIL.C < prev    next >
Encoding:
Text File  |  1985-02-08  |  204 b   |  14 lines

  1. main()    /* ceil.c -- finds ceiling of a floating double */
  2.  
  3. {
  4.  
  5. double x;
  6. int result;
  7.  
  8.     x = 14239.324;
  9.  
  10.     result = ceil(x);
  11.     printf("ceil value is %u",result);
  12. /*    Correct answer is: 14240 */
  13. }
  14.