#C语言# 结构体知识点

结构体

struct student {
char name[10];
int  callnum;
}S;//也是结构体变量
struct student s;//创造结构体变量

初始化(赋值)
*s.name="hhhhh";//(大错特错)
*” a. b"a为结构体变量
”a->b"a为结构体指针变量

struct student s={"xiaomin",65432};//第一种
strcpy(s->name,"wangmingz");//#include不能省略
s->callnum=12345;//指针赋值,,eg:struct student s
s.callnum=12;//此时s为结构体变量,eg:struct student* s

传参
1.传结构体名(不能改变值)

#include
#include
struct student {
char name[10];
int  callnum

#C语言# 结构体知识点最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/19914.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>