15 lines
276 B
C
15 lines
276 B
C
|
#include <stdio.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
struct tm time_of_day;
|
||
|
time_t ltime;
|
||
|
auto char buf[26];
|
||
|
|
||
|
time( <ime );
|
||
|
_localtime( <ime, &time_of_day );
|
||
|
printf( "Date and time is: %s\n",
|
||
|
_asctime( &time_of_day, buf ) );
|
||
|
}
|