initial commit

This commit is contained in:
2025-07-10 10:12:18 -04:00
commit d93243566c
8 changed files with 220 additions and 0 deletions

11
sb-time.c Normal file
View File

@@ -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;
}