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>
static const char Date[] = __DATE__;
static const char Time[] = __TIME__;
int main(void)
{
printf("Built on %s at %s\n", Date, Time);
return 0;
}
/* my output
Built on Apr 26 2005 at 11:48:52
*/