标签:oid main str turn int 模板 err close string
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void) {
FILE *fp = NULL;
fp = fopen("./1.txt", "w+");
if (fp == NULL) {
perror("fopen");
system("pause");
return -1;
}
if (fp != NULL) {
fclose(fp);
fp = NULL;
}
printf("\n");
system("pause");
return 0;
}
标签:oid main str turn int 模板 err close string
原文地址:https://www.cnblogs.com/albertshine/p/13403135.html