int num [] = {1,2,3,4};int *ptr = num;cout << &(ptr++); /* ERROR: & need l-value */ cout << &(++ptr); /* 正確 */
沒有留言:
張貼留言