#include <stdio.h>
int main ()
{
FILE *fp1;
fp1=fopen("test0.txt","rt");
if(fp1==NULL)
{
printf("can not open test0.txt/n");return 0;
} // {} necessary
fclose(fp1);// necessary
return 0;
}