I am studying the C++ code from an opensource project (libredwg)
I have the following code:
*offset = *(*src)++;
What does this do?
I understand
offset = *src++;
which would assign src[0] to the variable 'offset' and then increment src so that it points to what was previously src[1].