c - In double (*foo)[2] what does the [2] represent -
in double (*foo)[2] [2] represent? , how convert array such array of float* in c?
double (*foo)[2] foo pointer array of 2 double elements.
for example:
double bla[2]; double (*foo)[2] = &bla;
Comments
Post a Comment