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

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -