关于VS2017文件操作总是出现问题,求
[code]#include <stdio.h>
#include <stdlib.h>
int main()
{
int i = 0;
FILE *fp;
char text[10];
if (fp = fopen_s(&fp,"D:\\iTudou\\test_01_C.txt", "r") != 0)printf("ERROR");
else printf("RIGHT");
fgets(text, 8, fp);
fprintf("%s",text);
system("pause");
return 0;
}
编译过程没有问题 在执行中总是在fgets处出现断点