動態分配及對動態申請得到的結構體變量進行訪問

#include <stdio.h> #include <stdlib.h> #include <malloc.h> typedef struct _student { int num; char name[30]; } Student; Student s2[4]; Student *s3[100]; Student **t; int main() { int i,
相關文章
相關標籤/搜索