struct 结构名{
类型名 结构成员1;
类型名 结构成员2;
...
类型名 结构成员n;
};
struct Student st1 = {100, 'm', "Xiexiaodong"}; //第一种,定义的同时初始化,类似数组,定义后在整体赋值会出错
第二种
struct Student st2; //单独赋值
st2.score = 100;
st2.sex = 'm';
补充:对字符数组赋值可以用strcpy函数实现
struct student{ //定义一个结构体
int num;
char name[10];
int computer,english,math;
double average;
};
struct student students[50],temp; /*定义结构数组*/
for(i=0;i<n-1;i++)
{
index=i;
for(j=i+1;j<n;j++)
{
if(students[j].average>students[index].average) /*比较平均成绩*/
index=j;
}
temp=students[index]; //交换数组元素
students[index]=students[i];
students[i]=temp;
}
struct student s1={101,"zhang",78,87,85},*p;
p=&s1;
(1)用*p访问结构成员
(*p).num=101;
(2)用指向运算符->访问指针指向的结构成员
p->num=101;
int update_score(struct student*p,int n,int num,int course,int score);
pos=update_score(students,n,num,course,score);
使用结构指针作为函数参数只要传递一个地址值,能够极大地提高参数传递的效率
union 共用体类型名
{
成员列表
};
enum weeks{ SUN,MON,TUE,WED,THU,FRI,SAT}; //枚举常量的值 默认 0,1 ,2......
while(!feof(fp)) { //从文件中读取数据到结构体
fscanf(fp,"%s%d%d%s%d%d",stu[i].name,&stu[i].num,&stu[i].sex,stu[i].class,
&stu[i].score[0],&stu[i].score[1]);
i++;
}
information.txt格式:
小红 2014003 女 一班 99 100 // 数据间用空格隔开
原文:https://www.cnblogs.com/1234hj/p/12046291.html