ex36.pp 229 B

12345678910111213
  1. Program Example36;
  2. { This program demonstrates the StartOfTheDay function }
  3. Uses SysUtils,DateUtils;
  4. Const
  5. Fmt = '"Start of the day : "dd mmmm yyyy hh:nn:ss';
  6. Begin
  7. Writeln(FormatDateTime(Fmt,StartOfTheDay(Today)));
  8. End.