i am trying to change a code from regular functions to "Member function pointers" everything work fine but i have no idea how to define the pointer to operator
before the main i wrote
typedef int*(tArray_t<int>::*op)(int)const;
then inside the main
int main(){
//...
op oper=&tArray_t<int>::operator[];
cout<<*intArray[2]<<endl; // how do i change it here ??????????
//...
}