2
//这么写 #include<stdio.h> void main() { FILE * fp; fp=fopen("noexist","a+"); if(fp==NULL) return; fclose(fp); }
6