Computer Science, asked by gothy, 1 day ago

In C++, the expression x/=y is equivalent to ________________.

Answers

Answered by shaswatraj2008
1

Answer:

Explanation:

Arithmetic expressions are scanned from left to right. So (x++)+y , the post increment of x in first considered and then added with y. And the change of x would reflect in next statement.

Similar questions