int **a; // a 是指向整數的指標的指標(pointer to pointer) // 注意! 沒有什麼雙指標 int b = *a; // (*a) 是a 所指向的數值(value of a)
確定! 回上一頁