結構體的初始化

/*用scanf()從鍵盤上給結構體成員賦值:*/ #include<stdio.h> struct AGE { int year; int month; int day; }; struct STUDENT { char name[20]; struct AGE birthday; int num; float score; }; int main(void) {
相關文章
相關標籤/搜索