First, the original version defines an array of cylinder objects:
cylinder
cylinder oil_tanks[100];
The modified version defines an array of pointers to cylinder objects:
cylinder *oil_tank_pointers[100];