/*C語言雙重指標*/ #include<stdio.h> #include<stdlib.h>. int main(void) { int i = 1, *j, **k;. j = &i; k = &j;. printf("i = %d, &i = %p\n", ...
確定! 回上一頁