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 is a fairly ugly way to do this and will confuse the heck out of anyone trying to maintain it.
Use a union instead. At least this makes it clear which array you're actually referencing to.