2013年(13)
发布时间:2013-05-23 16:41:08
/*************************c语言栈低为高地址,栈顶为低地址。函数参数的入栈顺序为从右至左。***************************/example:void fun(int x, int y, int z){ printf("%d in address [%x]",x, &x); printf("%d in address [%x]",y, &y); printf("%d in address [%x]",z, &z);}int main().........【阅读全文】