/* heatSupport.h */ /* number of rows (V) and columns (H) of elements */ #define V 20 #define H 30 /* set element temperatures to zero */ void setTemperatureOfAllElementsToZero(double p[V][H]); /* simulate heat diffusion on p for given number of time steps */ void simulateHeatDiffusion(int numberOfTimeSteps, double p[V][H]); /* display on screen the temperature distribution of p */ void displayHeatDistribution(double p[V][H]);