How do I initialize a 2D array with 0s when I declare it?
double myArray[3][12] = ?
|
|
How do I initialize a 2D array with 0s when I declare it? double myArray[3][12] = ?
|
||
|
|
|
|
or, if you want to avoid the gcc warning "missing braces around initializer" (the warning appears with
|
||||||
|
|
|
I think it will be
|
||
|
|
|
|
If you want to initialize with zeroes, you do the following:
If you want to fill in actual values, you can nest the braces:
|
||
|
|
You may use
or
|
|||
|
|
|
|
pmg's method is correct, however, note that
will give the same result. Additionally, keep in mind that
will only work as you expect it when some_number is zero. For example, if I were to say
the array would not be full of 3.1's, instead it will be
(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 |
||
|
|
|
|
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. |
||
|
|