What does the compiler do here: int a = b * (c * d * + e)? [duplicate] February 15, 2023 by Tarik The + is interpreted as an unary plus operator. It simply returns the promoted value of its operand.