【发布时间】:2011-11-08 02:45:14
【问题描述】:
cout << "blah blah blah";
for (int i=0; i < n; i++)
{
cout << '#' << endl;;
}
cout << "blah blah blah";
是堆栈帧上的整数 i 吗?如果整数只能在循环中使用,操作系统如何跟踪哪些变量只能在循环中使用而不能在整个函数中使用?
【问题讨论】:
标签: c++ compiler-construction operating-system