C语言动态内存的使用与函数结构体的联合使用 #include #include #include #define NAMEMAX 1024typedef struct student_st{int id;char *name;float math,chinese;}STU,*STUP;int stu_input(STU *p){char name[NAMEMAX]; C语言 2023-12-07 49 点赞 0 评论 74 浏览