This following code does not compile:
int main() {
int a[][] = { { 0, 1 },
{ 2, 3 } };
}
The error message produced is
error: declaration of 'a' as multidimensional array must have bounds for all dimensions except the first
int a[][] = { { 0, 1 },
^
Is this specified by the standard? If so, why is that? I think deducing bounds here would be very easy.
Well, yeah.
For one thing, an array can't be constructed from an incomplete type (
void
for example). An array of unknown bound is one of those incomplete types:Furthermore:
There is a common mistake beginners make, that the compiler has magical powers. The compiler works with information it already has, it does not create information out of thin air. If you asked it to create an object of unknown size, it simply would not be able to do so. See the following examples:
Source