We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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
Then why not just declare these three variables instead of an array?
Or make them fields in a struct, so you can send the entire block of three variables with one call to the send() routine.