如果不使用「指標的指標」來改變傳入的變數, memcpy() 也是個方法。 int B = 2; void func(int * p) { memcpy(p,&B,sizeof(B)); } int main() { int A = 1, C = 3; ...
確定! 回上一頁