C语言结构体结合malloc、free使用小例子

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <malloc.h> struct stu {     char name[10];     int age; }; typedef struct son {     char name[10];     int age; }SON; void main() {
相关文章
相关标签/搜索