@@ -0,0 +1,11 @@
#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;
}
The note is not visible to the blocked user.