Tagged Questions
1
vote
5answers
2k views
variable-size type declared outside of any function
when declaring the two dimensional array
int random[height][width];
and then using it in a function
void populate(int random[height][width], int x, int y)
gives the error variable-size type ...