vote up 2 vote down star

How do I initialize a 2D array with 0s when I declare it?

double myArray[3][12] = ?

flag

75% accept rate

6 Answers

vote up 8 vote down check
double myArray[3][12] = {0};

or, if you want to avoid the gcc warning "missing braces around initializer" (the warning appears with -Wall or, more specifically -Wmissing-braces)

double myArray[3][12] = {{0}};
link|flag
If you use the paragraph code blocks (four spaces at the beginning of line) you get syntax hightlighting, which you don't if you use inline blocks (backticks). – Martinho Fernandes Nov 6 at 16:43
Thanks, edited. I was in a backtick mode when I answered :) – pmg Nov 6 at 16:44
Ok great thanks! – Chris_45 Nov 6 at 18:06
vote up 0 vote down

I think it will be

double myArray[3][12] = {0}
link|flag
vote up 3 vote down

If you want to initialize with zeroes, you do the following:

double myArray[3][12] = { 0 };

If you want to fill in actual values, you can nest the braces:

double myArray[3][3] = { { 0.1, 0.2, 0.3 }, { 1.1, 1.2, 1.3 }, { 2.1, 2.2, 2.3 } };
link|flag
+1 for pointing out how to initialize everything ... but why did you shorten the array? :P – pmg Nov 6 at 16:48
1  
I shortened the array because I didn't want to type twelve sets of numbers. – JS Bangs Nov 6 at 17:15
vote up 0 vote down

You may use

double myArray[3][12] = { 0 };

or

double myArray[3][12];
memset(myArray, 0, sizeof(double) * 3 * 12);
link|flag
vote up 0 vote down

pmg's method is correct, however, note that

double myArray[3][12] = {{}};

will give the same result.

Additionally, keep in mind that

double myArray[3][12] = {{some_number}};

will only work as you expect it when some_number is zero.

For example, if I were to say

double myArray[2][3] = {{3.1}};

the array would not be full of 3.1's, instead it will be

3.1  0.0  0.0
0.0  0.0  0.0

(the first element is the only one set to the specified value, the rest are set to zero)

This question (c initialization of a normal array with one default value) has more information

link|flag
vote up 0 vote down

pmg's method works best as it works on the concept that if u initialise any array partially, rest of them get the default value of zero. else, u can declare the array as a global variable and when not initialised, the array elements will automatically be set to the default value (depending on compilers) zero.

link|flag

Your Answer

Get an OpenID
or

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