调试test程序
gcc -g test.c -o test gdb test
gdb命令
l (list) 列出程序清单
r (run) 运行程序
b (breakpoint) 设置断点
info b 查看断点信息
clear 清除断点
c (continue) 继续运行程序
s (step) 单步运行 进入函数
n (next) 单步运行 不进入函数
finish 跳出函数
print 显示变量/表达式的值
display 每次程序停止运行时都显示变量或表达式的值