【C語言】學習筆記8——結構struct(1)

1. 先看個例子 #include <stdio.h> #include <string.h> #define MAXTITL 41 #define MAXAUTL 31 struct book { /*結構模板,標記是 book */ char title[MAXTITL]; char author[MAXAUTL]; float v
相關文章
相關標籤/搜索