How i use multidimensional Array?

You can create an array of structure with just 1 dimension.

struct MyStruct {
  char ID;
  int16_t temp;
  int16_t humidity;
  int16_t humidityper;  
};

MyStruct array[100];

You will obtain an array for 100 items with MyStruct each.