// int num_rooms = 24;
// there exist a struct of type room_t, do i have any typecasting that i have to do?
// allocate an array for all of the room structs to be stored
// store the pointer in the global room_array variable
/*** YOUR CODE HERE ***/
room_array = malloc(num_rooms * sizeof(room_t));
is this right?

