#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成神之路。
共有 0 条评论