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.
FILE* stream;
char* tempdir;
int stat;
tempdir = getenv("temp");
strcat(tempdir, "\\data1.txt");
stream = fopen(tempdir, "w");
fprintf(stream, "Hello you\r\n");
fclose(stream);