你代码需要改成这样
#include<stdio.h>
#include<stdlib.h>
void main()
{
FILE *fp=NULL
fopen_s(&fp, "E:\\RNG.txt", "w")
if (fp!=NULL)
{
printf("open successs\n")
}
else
{
printf("can not open E:\\hekai666.txt\n")
}
}
当然可以!#include <stdio.h>
int main()
{
FILE *fd
fd = fopen("./test.txt", "r")
if(NULL == fd)
{
perror("open error.\n")
fclose(fd)
return -1
}
fclose(fd)
return 0
}
打开文件的方式有很多种: "w","r","a"等。建议楼主去看看fopen函数的第二个参数。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)