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.

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?

share|improve this question
1  
cdecl.org is handy for decoding incomprehensible C types. – Wilbur Vandrsmith Jun 4 '12 at 22:55

2 Answers

up vote 10 down vote accepted
double (*foo)[2]

foo is a pointer to an array of two double elements.

For example:

double bla[2];
double (*foo)[2] = &bla;
share|improve this answer

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,

float bar[] = {(float)(*foo)[0], (float)(*foo)[1]};

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.

share|improve this answer
1  
+1, note that the casts are useless. – ouah Jun 4 '12 at 18:52
Thanks! This was actually a super essential part of my question. Super helpful! – Eric Brotto Jun 4 '12 at 18:53
@ouah That's interesting, thanks. I would have expected a compiler warning about the downgrade. Still, the cast can't hurt, especially if the code will be run through splint/pc-lint analysis. – acraig5075 Jun 4 '12 at 19:15
@acraig5075 PC-Lint would report a loss of precision through Info 736 but C doesn't require the cast as there is an implicit conversion from double to float. – ouah Jun 4 '12 at 19:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.