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 trying to initialize a somewhat complex array of structs in C, and I'm running into some problems. I want to initialize an array of structs; each struct consists of a few fields, including one ...