Associativity of the same operator precedence — *start++

后端 未结 0 1494
有刺的猬
有刺的猬 2021-02-06 10:58

Why does the following expression:

total += *start++;

Evaluate to:

total += (*start)++;

And not:

t         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题