2
說,如果我想打印出我的整數存儲在一個「陣列」,這確實是一個指針memory.When我用裏面的代碼:知道指針指向的有效元素大小的方法是什麼?
int main(void)
{
int *arr = malloc(3*sizeof(int));
int *p = arr;
*arr++=1;
*arr++=2;
*arr=3;
while (??) // what should be filled in the while?
printf("%d",*p); // so that we can get the validly stored elements?
return 0;
}
請了解如何格式化您的代碼。 – 2012-04-07 20:31:49