Why is this the same:
(*(*pCurrent).p Data).name
as this:
pCurrent->pData->name
what is the benefit to the first? if any?
why are the parenthesis important?
thanks
(*(*pCurrent).p Data).name
as this:
pCurrent->pData->name
what is the benefit to the first? if any?
why are the parenthesis important?
thanks
Comment