What\'s the precedence in the next expression?
item = (char*)heap + offset;
Is it (char*)(heap + offset) or ((char*)heap
(char*)(heap + offset)
((char*)heap
Cast trumps binary addition according to the precedence table.