#include "stdafx.h"
#include<iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
for (int i = 0; i < 1000; i++){
cout << i;
cout << ('\n');
}
system("pause");
return 0;
}[/CODE]
Theo mình "đoán" thì vòng for này chỉ đưa con trỏ xuống dưới 1000 dòng.