摘要: 结构变量地址与成员地址 下列代码: struct student { char name[9]; /*姓名*/ int age; /*年龄*/ struct student *next; /*下一结点指针*/ }; main() { struct student stu,*pstu; int *pi 阅读全文
posted @ 2021-11-16 09:22 httpcc 阅读(127) 评论(0) 推荐(0) 编辑