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?

link|improve this question

what is the sum variable type? – Elalfer Apr 18 '11 at 16:52
Did you verify that you didn't get any compiler warnings? – unwind Apr 18 '11 at 16:55
feedback

5 Answers

up vote 10 down vote accepted

You're actually writing the size of sum into the 0 first bytes. You should be doing memset(sum,0,sizeof(sum)) instead.

(In other words, the arguments are target, data and length and you provided data and length in the wrong order.)

link|improve this answer
Oops! Guess I haven't do C programming for too long... After all vectors are so handy that a man might forget what he had learned years before. Thanks a lot! – Ziyao Wei Apr 18 '11 at 17:02
1  
@Ziyao: If this post answered your question, please consider accepting it by clicking the green check mark to the left. – John Dibling Apr 18 '11 at 17:03
1  
You might want to see Mark B's answer, as it's a more C++ -style solution to the problem. – esalaka Apr 18 '11 at 17:04
@John Dibling: Thanks! I just did. – Ziyao Wei Apr 18 '11 at 17:09
feedback

This is C++ so do it the C++ way with fill_n.

std::fill_n(&sum[0], sizeof(sum) / sizeof(sum[0]), 0);

The reason your memcpy didn't work is because, as noted in other answers, you swapped the second and third arguments.

EDIT: fill and fill_n will work on anything that provides or can be treated as an output iterator. For standard containers like vector you can either pre-size the container or use back_inserter while for arrays you can use the form I indicated.

link|improve this answer
Wow, this is something I must memorize. Can fill_n work on arrays, or dies this function only work on vector/deque/etc.? Thank you for this answer! – Ziyao Wei Apr 18 '11 at 17:08
@Ziyao: Long story short, this can work on more than just the STL collection types. – John Dibling Apr 18 '11 at 17:11
It even works on IOstreams, e.g. on std::cout and std::ofstream, via std::ostream_iterator<T> – MSalters Apr 19 '11 at 8:08
feedback
memset(sum,sizeof(sum),0);

Wrong.

I think you wanted to write:

memset(sum,0, sizeof(sum));

The signature of memset function is this:

void * memset ( void * ptr, int value, size_t num );

And its description is :

Sets the first num bytes of the block of memory pointed by ptr to the specified value (interpreted as an unsigned char).

link|improve this answer
feedback

I think you have the parameters in the wrong order.

According to cplusplus.com, the size parameter should be last:

void * memset ( void * ptr, int value, size_t num );
link|improve this answer
feedback

The syntax of function memset is:

void *memset(void *s, int c, size_t n);

The memset() function fills the first n bytes of the memory area pointed to by s with the constant byte c.

So you need:

memset (sum, 0, sizeof(sum));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.