Yesterday I programmed a small piece code in C++ which contains a loop and an array. In the program I need to reset the array every time the loop starts over. However, if I use
memset(sum,sizeof(sum),0);
Then the array won't be reset to all 0. For this program I used:
for (i=0;i<sizeof(sum)/sizeof(int);i++) sum[i]=0;
instead.
However, I think a loop is not as clear as a function, and it requires an additional variable, not to mention this is a million times uncool than the wizardry of memset() function. Could you guys enlighten me on this?
sumvariable type? – Elalfer Apr 18 '11 at 16:52