Welcome :)

You can create a char* pointer to the array and access the bytes that way.



char * c_arr = array;
c_arr[5] = 0; //writes the 6th byte, in the 2nd floating point num
c_arr[x*4+2]...