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() {
相關文章
相關標籤/搜索