. This like most of the other EOD will be quite easy. theres just one main flaw in it. I like what BA is doing with IQOD so please type answers in white, but you can still discuss in black this is meant to be a discussion not a quiz.
#include <iostream>
using namespace std;
int main()
{
int sum;
int count;
for(count = 1; count <= 100; ++count) sum += count;
cout << "The sum of the numbers between 1 and 100 is " << sum << endl ;
system("pause");
return 0;
}
Windows just assigns sum whatever garbage value was in that address.
