我需要幫助理解我們如何獲取Loc3和Loc4下表中的值。 當我自己製作一張桌子時,我到達了那些專欄的完全不同的條目。 謝謝!需要幫助理解涉及指針的C練習的解決方案
int x = 42; /* x is at address 100 */
int y = 13; /* y is at address 104 */
int *p; /* p is at address 108 */
int **p2; /* p2 is at address 112 */
/* Location 1 */
p = &y;
p2 = &p;
/* Location 2 */
*p2 = &x;
**p2 = 11;
/* Location 3 */
*p = 12;
/* Location 4 */
*你得到了什麼*值?你是如何得出你的價值的? – 2014-10-30 14:45:03