c语言中结构体变量做函数参数的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言中结构体变量做函数参数的问题相关的知识,希望对你有一定的参考价值。
C语言中调用函数时,以结构体变量作为函数参量一该如何编写?这里有一段代码要求调用函数算学生的平均成绩和总成绩#include<stdio.h>#define M 3struct date int num; char name[10]; char sex; int age; float score[5]; student[M];void main() int i,j; void f(date); printf("请按顺序输入学生数据\n"); for(i=0;i<M;i++) printf("姓名:"); scanf("%s",student[i].name); printf("学号:"); scanf("%d",&student[i].num); printf("性别:"); scanf("%c%c",&student[i].sex); printf("年龄:"); scanf("%d",&student[i].age); printf("语文成绩:"); scanf("%f",&student[i].score[0]); printf("数学成绩:"); scanf("%f",&student[i].score[1]); printf("英语成绩:"); scanf("%f",&student[i].score[2]); if(i!=2) printf("请输入下一个学生的数据\n"); for(i=0;i<M;i++) f(student); for(i=0;i<M;i++) printf("第%d位同学的总分为%f,平均分为%f\n",i+1,student[i].score[3],student[i].score);void f(date student) int i,j; for(i=0;i<M;i++) for(j=0;j<3;j++) student[i].score[3]+=student[i].score[j]; student[i].score[4]=student[i].score[3]/3; 问题出在第36行的调用函数里
你有几处错误,以下是修改后的代码#include<stdio.h>
#define M 3
struct date
int num;
char name[10];
char sex;
int age;
float score[5];
student[M];
void f(struct date student[]);
void main()
int i,j;
printf("请按顺序输入学生数据\n");
for(i=0;i<M;i++)
printf("姓名:");
scanf("%s",student[i].name);
printf("学号:");
scanf("%d",&student[i].num);
printf("性别:");
scanf("%c%c",&student[i].sex);
printf("年龄:");
scanf("%d",&student[i].age);
printf("语文成绩:");
scanf("%f",&student[i].score[0]);
printf("数学成绩:");
scanf("%f",&student[i].score[1]);
printf("英语成绩:");
scanf("%f",&student[i].score[2]);
if(i!=2)
printf("请输入下一个学生的数据\n");
/*for(i=0;i<M;i++)*/
f(student);
for(i=0;i<M;i++)
printf("第%d位同学的总分为%f,平均分为%f\n",i+1,student[i].score[3],student[i].score);
void f(struct date student[])
int i,j;
for(i=0;i<M;i++)
for(j=0;j<3;j++)
student[i].score[3]+=student[i].score[j];
student[i].score[4]=student[i].score[3]/3;
参考技术A 当成基本类型来用就好了,结构体唯一要注意的是分配空间,拷贝构造(特别是浅拷贝)
类似下面这样:
struct
complex_struct
a1,
b1,
c1;
c1
=
add_complex(a1,
b1);
C语言 结构体变量做函数参数问题
有以下程序:
#include <stdio.h>
#include <string.h>
typedef struct char name[9]; char sex; int score[2]; STU;
STU f (STU a)
STU b="Zhao", 'm', 85, 90;
int i;
strcpy( a.name, b.name );
a.sex = b.sex;
for ( i=0; i<2; i++ ) a.score[i] = b.score[i];
return a;
main()
STU c= "Qian", 'f', 95, 92 , d;
d = f(c);
printf ("%s,%c,%d,%d, ", d.name, d.sex, d.score[0], d.score[1]);
printf ("%s,%c,%d,%d\n", c.name, c.sex, c.score[0], c.score[1]);
程序运行后的输出结果是( )。
A) Zhao,m,85,90, Qian,f,95,92
B) Zhao,m,85,90, Zhao,m,85,90
C) Qian,f,95,92, Qian,f,95,92
D) Qian,f,95,92, Zhao,m,85,90
我知道一般的void函数 如果参数是
结构体变量 在被调函数中做的变换保留不到主调函数中
但这题中的是结构体函数吧。。。有影响吗
那应该选什么 求分析
实参不会变。所以,你中间的maxA变量,其实是子函数的形参变了。但是你的实参没变
因此结果没变
改,对于子函数中,你在void Max_Element_Find(struct Max_Element* maxA,double *A,int n)
Max_Element_Find(&maxA,A,n);这样就好了 参考技术A
一样不会影响到主调函数,除非你传的是结构体指针。
// 这种传递方式,子函数改变值会影响主函数void f( STU * stu )
stu->sex = b.sex;
main()
STU c= "Qian", 'f', 95, 92 ;
f( &c );
追问
这么说应该选C?
参考技术B 没有影响吧 都一样以上是关于c语言中结构体变量做函数参数的问题的主要内容,如果未能解决你的问题,请参考以下文章
在C语言中,怎么样定义结构体数组为全局变量?定义一个无返回值的函数,但是函数有参数可以吗?