博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
函数用指针传参挂死分析
阅读量:6531 次
发布时间:2019-06-24

本文共 164 字,大约阅读时间需要 1 分钟。

int funcA(int a,int b)

{
short c = 0;
funcB(&c);
}
int funcB(int* c )
{
*c = 5;
}
如果调用funcA,函数的栈被破坏,函数运行错误,挂死。

转载于:https://www.cnblogs.com/elseliving/p/7895265.html

你可能感兴趣的文章