标签: C

2 篇文章

gdb&ida命令速查手册
GDB # 执行相关命令 directory <路径> 提供一个搜索源文件的目录 run <参数> 运行程序 attach <pid/进程名> 附加到进程 target remote <ip:port> 附加到远程gdb服务器 stepi 指令步进 nexti 指令步过 step 代码步进 next …
C语言笔记(1)
函数返回值 一般来说, 函数在返回的时候会将待返回的值存到eax(累加器)寄存器中, 然后再调用mov指令将eax中的值写到对应的变量中 接下来考虑有返回值的函数不写return语句的情况, 编写以下代码: // test.c #include <stdio.h> int add(int a, int b) { int c = a + …
隐藏