We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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.