码迷,mamicode.com
首页 > 编程语言 > 详细

文件开启关闭操作c语言模板

时间:2020-07-30 14:34:50      阅读:55      评论:0      收藏:0      [点我收藏+]

标签: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;
}

文件开启关闭操作c语言模板

标签:oid   main   str   turn   int   模板   err   close   string   

原文地址:https://www.cnblogs.com/albertshine/p/13403135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!