Complete the following program that has an array to store one month of hourly templerature readings. Assume each month is 30 days long. Rows represent days of the month and columns represent hours of the day.
#include
int main () {
float temperature_readings[30][24];
// you write other variable declarations here
// you write code to compute the average temperature for a month averaged over all das of the month and all hours of the day.