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>
int main()
{
int i;
printf("Hello, World!\n");
for ( i = 0 ; i < 10 ; i++ ) {
printf("Now %02d\r", i );
fflush( stdout );
Sleep(1000); // Windows specific delay
}
return 0;
}