I have a Double dim. array:

 alarm_1_active_buffer[MAX_NUM_ALARMS][MAX_ALARM_STRING_SIZE];

I want to clear the buffer before filling it.
Like this :

 for(index=0; index<MAX_NUM_ALARMS ; index++)
    {
        memset(&alarm_1_active_buffer[index], 0, MAX_ALARM_STRING_SIZE);
        memset(&alarm_1_active_buffer[index],string, MAX_ALARM_STRING_SIZE);
    }

It is not working.

link|improve this question

53% accept rate
feedback

3 Answers

Since the arrays are laid in continuos address spaces, you don't have to do anything special for 2d arrays. You can simply use memset(alarm_1_active_buffer, 0, MAX_NUM_ALARMS * MAX_ALARM_STRING_SIZE * sizeof(type of alarm_1_active_buffer));.

link|improve this answer
it will clear the whole array...i want to clear only the i th index.. – mujahid Feb 23 '11 at 9:52
Umm..alarm_1_active_buffer[index] = 0 – Asha Feb 23 '11 at 10:01
You can just clear the entire array at once -- you don't need to iterate through the outer array and clear each index. – Conrad Meyer Feb 23 '11 at 11:05
1  
Tip: When using the sizeof operator, refer to the variable itself, dereferencing if needed, instead of naming the type explicitly (e.g., sizeof **alarm_1_active_buffer instead of sizeof (char)). This prevents bugs that crop up when the variable's type changes and one of the sizeof instances that references the old type isn't changed along with it. – Blrfl Feb 23 '11 at 12:54
feedback

Making sure to #include <string.h> first:

memset(alarm_1_active_buffer, 0, sizeof(alarm_1_active_buffer));

This method works regardless of the type of elements in the array.

link|improve this answer
feedback

I 'm confused:

from the man page:

#include <string.h>

 void *
 memset(void *b, int c, size_t len);

DESCRIPTION The memset() function writes len bytes of value c (converted to an unsigned char) to the byte string b.

How can you memset a string then? make sure the "string" value is of type int

link|improve this answer
The linux man pages describe it as: 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. Maybe that is less confusing. But really, you shouldn't be posting "answers" which ask more questions. – Conrad Meyer Feb 23 '11 at 11:04
Well I need to have +50 in reputation to post a comment, which I have not. Next time I'll just shut my mouth. – Pierre Guilbert Feb 23 '11 at 14:36
feedback

Your Answer

 
or
required, but never shown

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