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 <stdlib.h> // needed for system call
#include <stdio.h>
int main(void)
{
printf("About to spawn command.com and run a DOS command\n");
system("filename.exe"); // put the program you want to call in here
return 0;
}