标签: c gdb
我有struct
struct
typedef struct p { struct m **k; // ..other member } p_t; p_t *pi;
我需要通过gdb访问值pi->k[1]。
pi->k[1]
答案 0 :(得分:0)
执行以下操作
(gdb) print pi->k[1]