概述
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
struct infostu
{
char no[20];
//学号
char name[20];
char sex[4];
int age;
char major[20];
//专业班级
};
int main()
{
int i=0,j;
struct infostu student[500];
FILE *fp;
if((fp=fopen("c:\student.txt","r"))==NULL)
// 打开文件并且让fp指向 文件
{
printf("Can not open filen");
exit(1);
}
while(!feof(fp))
//读取一组数据后指针指向下一组数据,并且判断是否指向最后一行
{
fscanf(fp,"%[^,],%[^,],%[^,],%d,%s",&student[i].no,&student[i].name,&student[i].sex,&student[i].age,&student[i].major);
i++;
}
//%[^,]
字符串以,为结束标志
j=i;
for(i=0;i<j;i++)
printf("%s,%s,%s,%d,%sn",student[i].no,student[i].name,student[i].sex,student[i].age,student[i].major);
fclose(fp);
//关闭文件;
return 0;
}
最后
以上就是完美帅哥为你收集整理的C语言读取文件数据到结构体数组的全部内容,希望文章能够帮你解决C语言读取文件数据到结构体数组所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复