#include<stdio.h>
#include <string.h>
//可以退出的头文件
#include <stdlib.h>
//结构体的长度
#define DATALEN 15
//函数声明
//定义结构数组
struct wordUnit{
int id; //id
char word[10]; //词语
char depId[10]; //依存词语的id
char pos[10]; //词性
char depRel[10]; //依存目标的关系
};
int main(){
FILE *data;//要读取的文件指针
int i=0;//结构题数组移动
struct wordUnit words[DATALEN];
if((data=fopen("data3.txt","r"))==NULL){
printf("Can not open file\n");
return 0;
}
while(!feof(data)){
//原txt文档的数据之间是以空格隔开的
}
fclose(data);
for(int j=0;j<i;j++){
}
return 0;
}
扩展资料
1、使用关键字struct,它表示接下来是一个结构体。
2、后面是一个可选的标志(book),它是用来引用该结构体的快速标记。
/*
张三 244.00 244.00 542.00
李四 265.00 265.00 456.00
赵五 235.00 235.00 212.00
马六 285.00 285.00 415.00
Press any key to continue
*/
#include <stdio.h>
#define N 50
typedef struct info {
char name[20];
double first_try;
double an_oral_quiz;
double english;
}Info;
int main() {
int n = 0;
Info a[N];
FILE *fr = fopen("info.txt","rt");
if(fr == NULL) {
printf("打开文件出错。\n");
return 1;
}
while(!feof(fr)) {
fscanf(fr,"%s%lf%lf%lf",a[n].name,&a[n].first_try,
&a[n].first_try,&a[n].english);
printf("%s\t%.2lf\t%.2lf\t%.2lf\n",a[n].name,
a[n].first_try,a[n].first_try,a[n].english);
++n;
}
fclose(fr);
return 0;
}
fp = fopen("file1","r");
fclose(fp);
如果有如下的结构体类型:
struct student_type
{
char name[10];
int num;
int age;
char addr[30];
}stu[40];
结构体数组stu有40个元素,每一个元素用来存放一个学生的数据。假设学生的数据已经存放在磁盘文件中,可以用下面的for语句和fread函数读入40个学生的数据:
for(i=0; i<40; i++)
fread(&stu[i], sizeof(struct student_type), 1, fp);
或:
fread(&stu[i], sizeof(struct student_type), 40, fp);
{
i = 0;
fread(&临时结构体变量,sizeof(临时结构体变量),1,文件指针);
结构体数组[i++] = 临时结构体;
}
http://baike.1688.com/doc/view-d27895772.html 参考吧
struct student
{
char * name;
int chushi_grade;
int mianshi_grade;
int english_grade;
}
从文件读进来,写入结构体即可
student stu;
依次赋值stu->name,stu->chuhsi_grade;.