Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <stdio.h>
#include <time.h>
time_t t_now;
struct tm *tm_now;
t_now = time(NULL);
tm_now = localtime(&t_now);
char time_buf[50];
strftime(time_buf,50,"%d/%m/%Y %H:%M:%S",tm_now);
printf("%s\n",time_buf);