为什么这段代码会打印出 n-100?
int hello(int n)
{
for(int i = 0; i < n-100; i++)
{
}
}
int main()
{
int h = hello(12);
cout << hello(12) << " " << h << endl;
}
然而,这两个函数都返回垃圾(分别为 2665092 和 0)
int hello1(int n)
{
for(int i = 0; i < 12; i++);
}
int hello2(int n)
{
(n - 100);
}
我在 cygwin 环境中使用 g++ 编译了这段代码。