hello to all of you, is there a way to have a array and give each element of the array a special name? An example:
float my_array[20]; . . for(i=0;i<20;i++) send(my_array[i]; . .
this fits perfect to my requirements,
It quite definitely doesn't --- it clearly fails the "have the same address" criterion. And neither is it perfect, in any useful interpretation of the word. A struct would be a whole lot more readable.