func { int *int_addr; int_addr = &int_num; //( int_addr 的內容是 &num 像是 //0x12345678 ) *(&int_num) = 你想要改的數值; return ; }