11 lines
135 B
C++
11 lines
135 B
C++
|
#include <stddef.h>
|
||
|
#include <stdio.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
time_t now = time(NULL);
|
||
|
|
||
|
fputs(ctime(&now), stdout);
|
||
|
}
|