home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 15 / CDACTUAL15.iso / cdactual / program / c / WLIB.ZIP / EXAMPLE1.C next >
Encoding:
C/C++ Source or Header  |  1993-02-24  |  360 b   |  14 lines

  1. #include <stdio.h>
  2. #include <WTime.h>
  3.  
  4. int main()
  5.   {
  6.     Date MLK(1929,1,15);
  7.     puts("MLK was born "+MLK.FullDesc());
  8.     Date D2(1993,2,8);
  9.     long Dif=D2-MLK;
  10.     puts("\nThe difference between MLK's birthday and");
  11.     puts(D2.FullDesc()+" is "+Str(Dif)+" days or");
  12.     puts(Form("##.##",double(Dif)/365.2425)+" years.");
  13.     return 0;
  14.   }