Examining a different function
Let's go back and examine the values in deal_hands():
(dbxtra) func deal_handsThe code in the source window now includes the offending line:
for( player=0; player<=4; player++ )The limit on the loop counter (player) should have been set to 3 instead of 4, so there is four iterations instead of five. How can we test this suspicion?