Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこの声明を明確に理解していません:
int **ptr; printf (" %p \n", &( *( *(ptr + 1) + 4) ) );
実際、実行時に segfault が発生しない理由を自分で説明することはできません。なぜなら*、 の戻り値である数値でオペランドを使用できないからです*(ptr + 1)。
*
*(ptr + 1)