Array and Pointer
reserves one cell in memory of type float.
reserves 10 cells in memory of type float.
&f is the address of the variable f. The address tells you where f is located in computer memory.
An array name by itself is the starting address of the array. I.e. address of temps[0].