动态线条
动态线条end
摘要: 常见的调用约定 调用约定 参数压栈顺序 平衡堆栈 __cdecl 从右至左 调用者平衡(外平栈) __stdcall 从右至左 自身清理堆栈(内平栈) __fastcall ecx/edx传递前两个参数,剩下参数从右至左入栈 自身清理堆栈(内平栈) __cdecl #include <stdio.h 阅读全文
posted @ 2022-02-09 19:21 v1v1v1 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 高级语言源代码 #include <stdio.h> //计算a + b + c的结果,并将结果返回 int fun(int a,int b,int c){ return a + b + c; } int main(){ fun(1,2,3);//调用函数计算1 + 2 + 3 return 0; 阅读全文
posted @ 2022-02-09 18:01 v1v1v1 阅读(123) 评论(0) 推荐(0) 编辑