Solve this problem using pointer variables for parameterpassing, where appropriate and pointer arithmetic when working witharrays
Please use the \"C\" program toProduce theEXACT output shown at the end of the document.
1.Generate a graph that compares, on a month-by-month basis, themonthly rainfall for Kamloops for the first half of 2018 (i.e. Jan– June) versus the normal (30 year average) rainfall for Kamloopsfor the same months.
- In main( ), create the 2 data arrays using initializationslists, and also create this array char *months[6] = { \"January\",\"February\", \"March\", \"April\", \"May\", \"June\" }; Â Â
- Create and call ONE function to print one line of symbols.
- call it the first time to print the line of *
- call it a second time to print the line of !
- no if statement is needed or allowed in this function
- Think very carefully about the parameter list for thisfunction
- Call a function to print the scale and the legend as shownbelow.
- Call a function to find and print the total rainfall for eachdata set, and also the comparison of the two totals. The functionwill state whether 2018 was wetter, drier, or equal to a normal 6month rainfall and by how much.
- Call a function to determine which month in 2018 had thehighest rainfall, and print the month name (using thefunction described in #2), the rainfall amount and howthat amount compares to the normal amount for that month.
Input will consist of 6 pairs of numbers representing the normalrainfall for the month and the 2018 rainfall amount for the samemonth. Use the exact data shown below when you run your program,(Note: the data and output below are for illustrationpurposes only. Your program must be able to work with any data thathas this format)
- 3.15.4      ¬ January data (normalfirst, then 2018)
- 4.74.4     ¬ February data
- 4.2 4.1
- 5.0Â Â Â 6.0
- 4.0Â Â Â 5.6
- 6.3Â Â Â Â 4.5
Rainfall comparison for January to June 2018
      January   |***********
|!!!!!!!!!!!!!!!!!!!!!!!!!
|Â Â
  February |***************
|!!!!!!!!!!!!!!!!!!!!!
|
  March | etc for the rest of the months
|Â Â
      Â
June |*****************
|!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|----1----2----3----4----5----6----7----8
LEGEND:
* - normal rainfall for a givenmonth
! - 2018 rainfall for a givenmonth
Total normal rainfall was xx.x mm.
Total rainfall for 2018 was yy.ymm.
2018 was a drier year than normal byz.z mm. (or print wetter or equal if that isappropriate)
The month in 2018 with the highest rainfall was …