In double (*foo)[2] what does the [2] represent? And how would I convert an array as such to an array of float* in C?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||||
|
For example:
|
|||
|
|
|
To answer the second part of your question, you won't be able to convert it to an array of floats. You will need to declare a new array of floats and explicitly convert each member. For example,
Additionally to add to the answer of the first part I find this link and his so called right-left rule invaluable for working out what a confusing declaration means. |
|||||||||||
|