其他分享
首页 > 其他分享> > 2021-10-26

2021-10-26

作者:互联网

#include<stdio.h>
#include<string.h>
#include<stdlib.h>

int main()
{
//读取源程序
char resourceProject[10000];
char token[20] = { 0 };
int i;
int end = 0;//数组末尾下标
FILE* fp;
if ((fopen_s(&fp, “D:\resourceProject.txt”, “r”)) == NULL)
{
printf(“未找到源程序文档!”);
return 0;
}

//将源程序读入resourceProject数组

fclose(fp);


if ((fopen_s(&fp, "D:\\targetProject", "w")) == NULL)
{
    printf("未找到输出文档!");
    return 0;
}

}

各位大佬 为什么我的这个代码运行后是未找到源程序文档
并且我已经创建文件了啊
求解答

标签:fp,10,26,int,resourceProject,未找到,2021,include,源程序
来源: https://blog.csdn.net/pppppoooooeee/article/details/120978862