码迷,mamicode.com
首页 > 其他好文 > 详细

语法*第九章*6 结构体变量作为函数参数

时间:2018-05-01 23:54:43      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:print   div   printf   %s   float   struct   span   oid   std   

#include<stdio.h>
struct student{
   int num;
   char name[20];
   float score;
} stu={112301,"bowen1",20};
void print(struct student stux);
 int main(void){
  print(stu);
}
void print(struct student stux){
  printf("%d %s %0.1f",stux.num,stux.name,stux.score);
}

 

语法*第九章*6 结构体变量作为函数参数

标签:print   div   printf   %s   float   struct   span   oid   std   

原文地址:https://www.cnblogs.com/sunnybowen/p/8977109.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!