Question:
Is it possible to have a portion of the pointers within an Array of float pointers point to an int?
OR... is it possible to have a float pointer point to an int variable (possibly by typecasting the int to a float when initializing the "pointer / variable" association ?
Background / need:
I am writing a communication protocol (Johnson Control's N2) and it requires that I transmit a couple of int values as floats.
Is it possible to have a portion of the pointers within an Array of float pointers point to an int?
OR... is it possible to have a float pointer point to an int variable (possibly by typecasting the int to a float when initializing the "pointer / variable" association ?
Background / need:
I am writing a communication protocol (Johnson Control's N2) and it requires that I transmit a couple of int values as floats.
Comment