Saved Bookmarks
| 1. |
E)If x=4; find the value of x+ = x++ * ++x%2; |
|
Answer» 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. |
|