This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/asctim_s.c

16 lines
318 B
C

#define __STDC_WANT_LIB_EXT1__ 1
#include <stdio.h>
#include <time.h>
void main()
{
struct tm time_of_day;
time_t ltime;
auto char buf[26];
time( &ltime );
_localtime( &ltime, &time_of_day );
asctime_s( buf, sizeof( buf ), &time_of_day );
printf( "Date and time is: %s\n", buf );
}