I am trying to read correctly this :
*(strarray[i]+j)=0;
I was understanding something like :
strarray[i][++j] = 0;
or
strarray[i][++j] = '\0';
but is not exactly the same. How could it be written correctly as an array subscripting notation?
+jto++j?++jand+jhave nothing to do with each other.++jCHANGESjitself while+jsimply adds j's value to whatever comes before in the code.strarray? Is itchar**?