[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
USAGE
   signed int sccdiget(
           signed int *year,
           signed int *month,
           signed int *monthday,
           signed int *dayofweek );

PROTOTYPE IN
   sc_clock.h

DESCRIPTION
   sccdiget returns the current date in integer form from DOS.

EXAMPLE
   #include <stdio.h>
   #include <softc.h>
   #include <sc_clock.h>

   void main()
   {
     int year, month, dayofmonth, dayofweek;

     sccdiget(&year, &month, &dayofmonth,&dayofweek);
     printf("%d %d %d %d\n",year, month, dayofmonth, dayofweek);
   }

See Also: sccdsget
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson