首页 > 后端开发 > C++ > 如何在C语言中将结构体的各个成员作为参数传递给函数?

如何在C语言中将结构体的各个成员作为参数传递给函数?

PHPz
发布: 2023-09-21 20:57:03
转载
1477 人浏览过

如何在C语言中将结构体的各个成员作为参数传递给函数?

将各个成员作为参数传递给函数 -

  • 每个成员都作为函数调用中的参数传递。

  • 它们在函数头中的普通变量中独立收集。

示例

#include<stdio.h>
//Declaring structure//
struct student{
   int s1,s2,s3;
}s[5];
//Declaring and returning Function//
void addition(int a,int b,int c){
   //Declaring sum variable and For loop variable//
   int i,sum;
   //Arithmetic Operation//
   for(i=1;i<4;i++){
      sum=a+b+c;
      printf("Student %d scored total of %d</p><p>",i,sum);
   }
}
void main(){
   //Declaring variable for For loop//
   int i;
   //Reading User I/p through For loop//
   for(i=1;i<4;i++){
      printf("Enter marks for student %d in subject 1 = ",i);
      scanf("%d",&s[i].s1);
      printf("Enter marks for student %d in subject 2 = ",i);
      scanf("%d",&s[i].s2);
      printf("Enter marks for student %d in subject 3 = ",i);
      scanf("%d",&s[i].s3);
   }
   //Calling function//
   addition(s[].s1,s[].s2,s[].s3);
}
登录后复制

输出

day = 2
month = 1
year = 2010
登录后复制

以上是如何在C语言中将结构体的各个成员作为参数传递给函数?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板