In this part, you will create a glorious color image of
the Mandelbrot set.
This program is very similar to gray-scale one,
so use the file mandgray.c as a starting point. You
can copy it to mandcolor.c with the command:
cp mandgray.c mandcolor.c
Declare three 256-element arrays of doubles,
say red[], green[], and blue[], and
read in the color values stored in the data file using
scanf(). Remember array indices start at 0!
Print out their values in a table to make sure everything is working.
Once you have done this, it should not take much effort
to finish off the color version.