in c.
Look the below examples
int array[2][3]; # 2
int array[2][3][4]; #3
In short term how to know how many dimensional it is.
Is that really possible ?
Puff poor English
C style array don't store information about their size
it's all contiguous data, just divided into dimensions by syntax.
Обсуждают сегодня