vote up 1 vote down star
1

Hi,

I have a these structures definitions

typedef struct my_s {
   int x;
   int y;
} my_T;

typedef struct your_s {
    my_T * x;
} your_T;

your_T array[MAX_COL][MAX_ROW];

To initialize the array's pointer to NULL, can I do:

memset (array, 0, sizeof(array))

this does not look right to me,,, appreciate some advise.

Thanks

flag
Shouldn't that be "your_T array[MAX_ROW][MAX_COL];" since arrays in C++ are row-major order? – Robert Gamble Dec 29 '08 at 5:40
oops, a typo, you are right – dave Dec 29 '08 at 7:18

2 Answers

vote up 1 vote down
typedef struct my_s {
   int x;
   int y;
} my_T;

typedef struct your_s {
    my_T * x;
} your_T;

your_T array[MAX_COL][MAX_ROW];

You cannot initialize the pointers of your_T to null using memset, because it is not specified that a null pointer has its bit pattern all consisting of null bits. But you can create your array like this:

your_T array[MAX_COL][MAX_ROW] = {{}};

The elements will be default initialized, which means for a pointer that the pointer will contain a null pointer value. If your array is global, you don't even have to care. That will happen by default then.

link|flag
Thanks for the information. I know when global, it is defaulted to NULL, but I want to make sure it is NULL-ed since I am running in the embedded space... – dave Dec 29 '08 at 5:18
right then you are fine with {{}}. the indent is that an implementation could store a value different from 0x0 in the pointer, which when dereferenced by a following read of that memory cell could cause a trap to be generated. thus, the 0x0 bit pattern is not neccassary what is in a null pointer. – Johannes Schaub - litb Dec 29 '08 at 5:20
+1. Empty brace initialization is illegal in C but, as I just learned, legal in C++, is this a common/useful construct? – Robert Gamble Dec 29 '08 at 5:22
actually once i thought it's illegal in C++ too (because i read it on some site which talked about C), until some guys in ##c++ showed me where in the standard it allows that in C++ :) – Johannes Schaub - litb Dec 29 '08 at 5:25
on your +1 point, it seemed it compiles ok with {{ }}.. – dave Dec 29 '08 at 5:27
show 5 more comments
vote up 3 vote down

easiest is

your_T array[MAX_COL][MAX_ROW] = {{{0}}};
link|flag
1  
+1, just to clarify, this works because all members not explicitly initialized will be set to 0 which is a null pointer. – Robert Gamble Dec 29 '08 at 5:18
hmn, trying this, compiler gave warnings: missing braces around initializer near array[0][0], my warnings are treated as errors. – dave Dec 29 '08 at 5:24
sorry, forgot third set of braces. Array of array of struct. – rampion Dec 29 '08 at 14:36

Your Answer

Get an OpenID
or

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