1. Declare a one-dimensional array, name, that contains 20 characters.
2. If each character occupies one "cell" in memory, and the base address of name is 1000 , what is the address of the cell referenced in the following statement?
name $[9]=$ 'A';
Use the following declarations for Exercises 11 and 12:
```
enum MonthType {JAN, FEB, MAR, APR, MAY
OCT, NOV, DEC};
struct WeatherType
{
int avgHiTemp;
int avgLoTemp;
float actualRain;
float recordRain;
};
```
Assume that an int requires one cell in memory, that a float number requires two cells, and that the struct members are found in contiguous memory locations with no gaps.