hello.c
#include <stdio.h>
int main() {
printf("Hello world!\n");
return 0;
}
编译
g++ -g hello.c -o hello
调试
gdb ./hello
(gdb)b main
(gdb) r
神器体验
输入 : Ctrl-x o
#include <stdio.h>
int main() {
printf("Hello world!\n");
return 0;
}
g++ -g hello.c -o hello
gdb ./hello
(gdb)b main
(gdb) r
输入 : Ctrl-x o