Answer:
[tex]x = x + number[/tex]
[tex]x+=number[/tex]
Explanation:
Given
[tex]x = x + number[/tex]
Required
Write an equivalent expression in C
The given expression uses + and + is represented as + in C
So: The equivalent expression is
[tex]x = x + number[/tex]
However, C supports compound assignment operators
So:
[tex]x = x + number[/tex]
can be rewritten as
[tex]x+=number[/tex]