逆向调用函数与原函数地址探究

最近逆向了一个普通的小程序,源程序如下 #include <stdio.h> long add(long a,long b) { long x = a,y = b; return (x+y); } int main(int argc,char* argv[]) { long a = 1, b = 2; printf("%d\n",add(a,b)); return 0; } 刚进入局部函数的时候
相关文章
相关标签/搜索