Quote Originally Posted by VladimirF View Post
It would help if you show WAHT did you try, and what errors did you get.
(ArrayOfPtrs[2]+numDigits) = (ArrayOfPtrs[0]+numDigits) + (ArrayOfPtrs[1]+numDigits)

i tried that, stupidly...error was can't add pointers

so then i tried this

(ArrayOfPtrs[2]+numDigits) = (*ArrayOfPtrs[0]+numDigits) + (*ArrayOfPtrs[1]+numDigits)

and it was also an error.

Thinking about it I know that these two ways can't work, but I can't, at the moment, find a way to write it correctly.