This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How can I "reset" an array?

Hello,

I have an array. I have initialized it in this way:

volatile int memory[2][3] = {{0,0,0},{0,0,0}};

I need to clean, reset that array and I'd like to know if it exists an unique operation. I know how I can clean it with two for.

Thanks.