看板 C_and_CPP 關於我們 聯絡資訊
這樣就可以跑 #include <stdio.h> #include <stdlib.h> int main() { typedef struct { int area; int width[15]; int height[15]; } MS; MS *burst; burst = (struct MS*)malloc(sizeof(MS)*40); int n; for( n = 0 ; n<15 ; ++n ) { burst->width[n] = n*10; burst->height[n] = n*10; burst->area = burst->width[n]*burst->width[n]; printf("burst->area = %d\n",burst->area); } return 0; } -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 123.240.38.21
x000032001:騙文章數>"< 其實可以codepad 07/20 14:47
※ 編輯: x000032001 來自: 123.240.38.21 (07/20 14:49)
NGboy:嗯嗯 還是謝謝大大囉:D 07/20 17:05