Which of the following is the syntax to declare the operator function operator as a member function of a class for constant arrays?
a. const Type& operator[](int index) const;
b. const Type& []operator(int index) const;
c. const Type [](int index) const;
d. const Type& operator[](int index);