home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day20 / casting2.c < prev    next >
C/C++ Source or Header  |  2002-08-11  |  153b  |  13 lines

  1. #include <stdio.h>
  2.  
  3. int main( void )
  4. {
  5.    int i1 = 100, i2 = 40;
  6.    float f1;
  7.  
  8.    f1 = (float)i1/i2;
  9.    printf("%lf\n", f1);
  10.    return 0;
  11. }
  12.  
  13.