标签: c++ post-increment
我知道后期增量的概念,但它如何适用于后续? t的输出是10.如何解释未定义的行为?
int a = 2; int b = 3; int t; t = a++ * (a+b);
答案 0 :(得分:0)
这是你在那里的未定义行为。