Your example will initialize element 100(which you don't actually have) to whatever the current value of count is + 1...it should be:<P>for (int count = 0; count < 100; count++)<BR>{<BR>num[count] = 0 ...
I'm working on a small project here, and need to change all spaces in a char array to underscores. Meaning that "One Two Three" is changed to "One_Two_Three".<BR><BR ...