[筆記] 指標Pointer 以下為範例程式int *ptr; //宣告一個指標 可以不給初值int a 10; ptr = &a; // ptr 等於a的位址printf("ptr=%d \n",ptr); // 印出a address ...
確定! 回上一頁