For a typed enum `type Color int` with iota constants Red, Green, Blue, what is the zero value of a Color variable declared as `var c Color`?type Color int const ( Red Color = iota Green Blue )