Why does this loop (to 1 billion) only take a few sounds to execute ...
for (i = 0; i < 1000000000; i++)
{
}
... but this loop (to 10 billion) takes >10 minutes?
for (i = 0; i < 10000000000; i++)
{
}
Shouldn't it just take 30 seconds or so (3 seconds x 10)?