结构体
瓜皮233
这个作者很懒,什么都没留下…
展开
-
结构体基本操作
结构体基本操作 #include<stdio.h> #include<string.h> struct Student { int age; char name[50]; int score; };//注意有分号 int main() { //定义结构体变量 struct Student stu; //结构体变量的初始化,...原创 2019-06-28 14:43:45 · 289 阅读 · 0 评论 -
结构体的值传递和地址传递
结构体的值传递和地址传递 代码为: #include<stdio.h> #include<string.h> struct Student { int age; char name[50]; int score; }; void chstrStu1(struct Student st1) { st1.age = 20; strcp...原创 2019-06-28 15:47:51 · 2000 阅读 · 0 评论