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.
私structは
struct
typedef struct p { struct m **k; // ..other member } p_t; p_t *pi;
pi->k[1]gdbを介して値にアクセスする必要があります。
pi->k[1]
以下をせよ
(gdb) print pi->k[1]