asctime()
Syntax:
#include <time.h>
Description:
The function asctime() converts the time in the struct ptr to a character string of the following format:
day month date hours:minutes:seconds year\n\0
An example:
Mon Jun 26 12:03:53 2000
Related Topics:
localtime(), gmtime(), time(), ctime()



