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.