Does golang support multidimensional array?

I mean, does golang support array like this [ , ]?

Yes go supports it but it written like this [2][5] because it is an array of arrays. See this page

https://www.tutorialspoint.com/go/go_multi_dimensional_arrays.htm

2 Likes

thank u !

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.