Why it is necessary to mention the column dimension where row dimension is optional? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 1

Why it is necessary to mention the column dimension where row dimension is optional?

In array declaration

18th Nov 2019, 5:20 PM
Ishitha
1 Antwort
+ 1
Look at my code example; https://code.sololearn.com/c2DwRSriSSl0/?ref=app A 2D array could be initialized with a fully bracketed definition e.g. { {1, 2, 3}, {4, 5, 6} } or with a simple sequence of values e.g. {1, 2, 3, 4, 5, 6} (see http://www.open-std.org/jtc1/sc22/wg14/www/docs/n2310.pdf chapter 6.7.9 paragraph 26) If you choose the second way, the notation arr[][] = {1, 2, 3, 4, 5, 6} would be ambiguous. It could be understood as { {1, 2, 3}, {4, 5, 6} } or { {1, 2}, {3, 4}, {5, 6} } So the only value that can be omitted during multidimensional array initialization is the leftmost bracket value.
18th Nov 2019, 6:07 PM
Michael
Michael - avatar