-

Functions HI-TECH C CTIME

From HI-TECH C for CP/M Fan WIKI(EN)
Revision as of 18:48, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>CTIME</strong> ==SYNOPSIS== #include <time.h> char * ctime(time_t t) DESCRIPTION <strong>Ctime</strong>() converts the time in seconds pointed to by its ar...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

CTIME

SYNOPSIS

#include  <time.h>

char *    ctime(time_t t)


DESCRIPTION Ctime() converts the time in seconds pointed to by its argument to a string of the same form as described for asctime. Thus the following program prints the current time and date:


#include  <time.h>

main()
{
    time_t      t;

    time(&t);
    printf("%s", ctime(&t));
}

SEE ALSO

gmtime, localtime, asctime, time