Computer Science, asked by rajchouhan001, 1 month ago

e)
If x=4; find the value of x+ = x++ * ++x%2;​

Answers

Answered by prithivirajpadhy69
0

Explanation:

x = 4

x+ = x++ * ++x % 2

x+ = 4 * 6 % 2

x+ = 0

x = 6 + 0 = 6

x = 6

modulus sign (%) is used to find the remainder. So, 0 is the remainder.

Similar questions