Could anyone explain the difference between these lines?
Where: char ** d_array
, I just can't predict the outcome of these lines. Never really understood the pointers in C++, and didn't find any tutorial where they'd explain such lines yet.
Thanks in advance!
• d_array + 2
• *(d_array+ 2)
• *(d_array+ 2) + 1
• *(*(d_array+ 2) + 1)
• d_array[1][1]
• *(d_array[1]+1)