How to in an array go from integer to decimal by multiply by 100?

On the sending end:

  data[0]=bme1.readTemperature() * 100;
  data[1]=bme1.readHumidity() * 100;

On the other end:

float temperature = data[0] / 100.0;
float humidity = data[1] / 100.0;