作者x000032001 (某數要尋找暑假工作機會)
看板C_and_CPP
標題Re: [問題] C 結構指標的記憶體配置寫法
時間Tue Jul 20 14:47:11 2010
這樣就可以跑
#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