标签:log 内存占用 class div strong 导致 color col pre
造冰箱的大熊猫@cnblogs 2018/11/1
引发问题的代码片段如下
WORD var; scanf ( "%d", &var );
包含上述代码的程序,编译正常,运行时也正常接收用户输入的数据。但待到程序运行结束时提示“stack around the variable var ... was corrupted”。弄得不是特别明白,猜测是由于var的存储长度和scanf默认输入数据类型冲突导致的。var在内存占用2个字节,scanf在var地址处写入数据时占用更多的空间,等程序运行结束释放堆栈时候发现错误?
大虾请赐教!
运行时错误:“stack around the variable…was corrupted”
标签:log 内存占用 class div strong 导致 color col pre
原文地址:https://www.cnblogs.com/pandabang/p/9891178.html