i write matrix class in c++ and overloaded some operator like = and >> and << ,... but i can't overloading operator [][] for matrix class. if i have an object of class matrix like M1 then i can use this way for giving value to each element:
M1[1][2]=5;
OR
int X;
X=M1[4][5];