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.
/* system example : running a program */
#include <stdio.h>
#include <stdlib.h>
int main ()
{
int i;
// Executing program
i=system ("hello_c.exe");
printf ("\nReturned Value = %d\n",i);
return 0;
}
Hello World from C !
Returned Value = 0