Sudden windows shut down during programming with Borland C++ followed by a blue screen!!!
- by Ehsan Mamakani
This problem has happened to me twice.Both times during programming with Borland C++.when i wanted to run the simple code bellow:
while ( n )
{
cin >> n;
total = total + n;
average = total / counter;
counter++;
cout <<average<<endl;
}