C type casts and addition precedence

前端 未结 4 931
甜味超标
甜味超标 2020-12-15 17:51

What\'s the precedence in the next expression?

item = (char*)heap + offset;

Is it (char*)(heap + offset) or ((char*)heap

4条回答
提交回复
热议问题