c语言知识点--loading

1. 函数指令代码执行时在栈空间缓存

2. 函数参数保存在栈空间

3. sprintf最后是输入null

void Example(void)
{
    char szString[10];
    sprintf(szString, "I'm a str.");
    return;
}
/*
该函数越界‘sprintf’ output 11 bytes into a destination of size 10

*/

4. 以下循环是无限循环

unsigned int k = 5;
do {
    k--;
} while(k >= 0);
/*
无符号变量永远为正
*/

相关推荐