home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / tutorial / 152.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-27  |  131 b   |  7 lines

  1. #include "stdio.h"
  2.  
  3. main( )
  4. {
  5.     printf("The number of seconds in one year is: ");
  6.     printf("%f", 60.0 * 60.0 * 24.0 * 365.0);
  7. }