pkaosss227 发表于 2015-9-30 18:00:52

求助,把结构体放在主函数里做局部变量后,其他函数怎样实现调用

#include<stdio.h>
#define N 3
struct student {
char name;
float score;
};

void fenshu(struct student stu[],int n);

int main() {
struct student stu;
fenshu(stu,N);
return 0;
}

void fenshu(struct student stu[],int n) {
int i;
for(i = 0;i < n;i++) {
printf("输入第%d位学生姓名:",i + 1);
scanf("%s",&stu.name);
printf("请输入数学,语文,英语成绩(逗号隔开):");
scanf("%f,%f,%f",&stu.score,&stu.score,&stu.score);
stu.score = (stu.score+stu.score+stu.score)/3;
}
for(i = 0;i < n;i++) {
printf("%s同学的平均分是%6.2f\n",stu.name,stu.score);
}
}

AmosAlbert 发表于 2019-7-18 13:38:41

函数里定义的结构体是局部变量,在这个函数外是不能使用的。

你要在函数外定义成全局变量。
页: [1]
查看完整版本: 求助,把结构体放在主函数里做局部变量后,其他函数怎样实现调用