what is the value of X after evaluating x%=X++ + ++x.2;if X=5 initially
Answers
Answered by
3
Answer:
The prefix and postfix increment both increase the value of a number by 1. The only difference between the two is their return value. The former increments ( ++ ) first, then returns the value of x , thus ++x . The latter returns the value of x first, then increments ( ++ ), thus x++
Answered by
1
Answer:
Answer is 1
it's is 5%11
Similar questions