摘要: 动态内存分配 程序1 sizeof与结构 //36-1 sizeof与结构.c #include <stdio.h> #pragma pack(1) //字节对齐 struct student //定义结构类型 { char name[9]; char sex[3]; int age; }*pstu 阅读全文
posted @ 2021-11-15 11:05 httpcc 阅读(81) 评论(0) 推荐(0) 编辑