代码编织梦想

c语言形参跟局部变量区别,调用函数时,形参的地址与局部变量地址同样-爱代码爱编程

调用函数时,形参的地址与局部变量地址一样 #include #include #include typedef struct { int *base; int *top; int stackSize; }SeqStack; void initial ( SeqStack *S ) { S->base = ( int * ) m