我正在运行以下代码:
#include<stdio.h>
#include<string.h>
#include<io.h>
int main(){
FILE *fp;
if((fp=fopen("test.txt","r"))==NULL){
printf("File can't be read\n");
exit(1);
}
char str[50];
fgets(str,50,fp);
printf("%s",str);
return 0;
}
text.txt 包含:I am a boy\r\n
由于我在 Windows 上,它需要 \r\n 作为换行符,所以如果我从文件中读取它应该存储"I am a boy\n\0"
在. 我正在使用 mingw 编译器。str
"I am a boy\r\n"