#include <stdio.h>main(){FILE *fp;int c;if((fp=fopen("exist","w"))!=NULL){printf("open success!/n");}fclose(fp);}