Code:
typedef struct {
    int rows;
    int cols;
    int ** element;
} matrix;
Is there any difference between using this to get to the int element is pointing at

matrix * resultMatrix = new matrix;

resultMatrix->element[i][j]

and this?

*(*((resultMatrix->element)+i))+j)

Forgive me if this seems basic, cos I just wanna make sure

Pier.