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>
#include<stdio.h>
void main()
{
FILE *fp;
fp = fopen("myfile.dat","r");
if(fp==NULL)
{
printf("Unable to open file");
exit(1);
}
else
{
printf("File openned successfully");
exit(0);
}
}