第五章:自訂型態 - Communications and Multimedia Laboratory, CSIE & GINM, NTU
第五章:自訂型態 第一節:結構struct 先看一個範例, 假設記錄一個人的基本資料需要他的"姓名","身高","體重", 寫成程式的長相如下: #include stdio.h > void main(void) { char name1[80], name2[80]; int height1, height2; int weight1, weight2; gets(name1); scanf("%d ......