Hello,
I was assigning a pointer to an array and I noticed it will only this to takeplace within the main function:
#include <stdio.h>
float array_1[10] = { 1,1,2,3,4,5,6,7,8,9 };
float * p_array_1;
int main( void )
{
p_array_1 = &array_1;
printf("array address using ampersand is %p...