I'm quite new, What I'm aiming for is something like: Saturday, January 29, 2022 and this is what I currently have:
#include <stdio.h>
#include <sys/sysinfo.h>
#include <time.h>
int main(void) {
time_t currentTime;
time(¤tTime);
printf("%s\n", ctime(¤tTime));
return 0;
}