fscanf读入文件数据出现错误。
用fscanf读取数据后,数据没有正常读取,出现乱码,而且数据也没有被分割开。得到的结果为:**褰簬鏅?110119**
#include <stdio.h>
#include <stdlib.h>
struct students
{
char name;
char phone;
struct students *next;
}student;
int main(void) {
FILE *fp;
fp = fopen("data.txt", "r");
fscanf(fp,"%s,%s",student.name,student.phone);
printf("**%s**\n",student.name);
fclose(fp);
return 0;
}
data.txt内存取的数据。
彭于晏,110119
刘德华,120119
吴彦祖,123456789 用记事本打开文件,选择 “另存为”,右下角的【编码】选择 ANSI,点击 “保存”,然后再试试 zltzlt 发表于 2020-8-7 12:12
用记事本打开文件,选择 “另存为”,右下角的【编码】选择 ANSI,点击 “保存”,然后再试试
谢谢老哥,
页:
[1]