Q:

Multidimensional arrays may be initialized by specifying bracketed values for each row

0

Multidimensional arrays may be initialized by specifying bracketed values for each row.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

int ia[3][4] = { // three elements; each element is an array of size 4
{0, 1, 2, 3}, // initializers for the row indexed by 0
{4, 5, 6, 7}, // initializers for the row indexed by 1
{8, 9, 10, 11} // initializers for the row indexed by 2
};

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now