12 lines
206 B
C
12 lines
206 B
C
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
int main() {
|
|
time_t t = time(NULL);
|
|
char time_str[10];
|
|
|
|
strftime(time_str, sizeof(time_str), "%I:%M%P", localtime(&t));
|
|
printf("%s\n", time_str);
|
|
return 0;
|
|
}
|