-

Changes

Jump to: navigation, search

Functions HI-TECH C CTIME

452 bytes added, 18:48, 31 July 2017
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..."
<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
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

Navigation menu