hello.c
#include <stdio.h>
int f(int i) {
? ? return i * 2;
};
int main() {
printf("Hello world : %d\n", f(10));
return 0;
}
編譯
g++ -g hello.c -o hello
調(diào)試
gdb ./hello
(gdb)b main
(gdb) r
神器體驗(yàn)
輸入 : p f(30)
#include <stdio.h>
int f(int i) {
? ? return i * 2;
};
int main() {
printf("Hello world : %d\n", f(10));
return 0;
}
編譯
g++ -g hello.c -o hello
調(diào)試
gdb ./hello
(gdb)b main
(gdb) r
神器體驗(yàn)
輸入 : p f(30)