10 lines
125 B
C
10 lines
125 B
C
|
#include <stdio.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
char timebuff[9];
|
||
|
|
||
|
printf( "%s\n", _strtime( timebuff ) );
|
||
|
}
|