現在我們來用gdb 看看這個小程式: gdb -q test (gdb) l (這裡用l 指令,是list 的簡寫) 1 int main() 2 { 3 int a, b, c; 4 a=5; 5 b=10; 6 b+=a; 7 c=b+a; ...
確定! 回上一頁