hi every one
Im still new to programming i have downloaded borland compiler and was writing the following code:
#include<iostream>
using namespace std;
int main()
{
for (int x = 0; x < 10000000000; x++ ){
cout<< x << endl;
}cin.get();
}
the problem is that when it is done i cant scroll up to the first number.
My goal is to copy all those numbers into note pad please help!