how would i detect if an element is an array? also, how would i declare an array like this: [1, 2, 3, [4, 5, 6]] ?
|
|
|||
|
|
|
You don't. In C, multidimensional arrays are arrays of arrays, not an array where one element is another array but the others are numbers. To do what you describe, you'd need an array of
You allocate In practice, however, you'll have no way of knowing whether the
Then you make a
When you make a
There are various other ways to achieve fundamentally the same thing. |
|||
|
|
|
Arrays in C absolutely can't do that -- they can't hold collections of objects that aren't all the same type. The same is true of the collections classes in the C++ standard library. To create this kind of "heterogeneous" collection, you actually need to define some kind of struct (or class in C++) -- call it |
|||
|
|