Computer Science, asked by areen98, 5 months ago

. If int x = 25, y = 5, z = 0; what value is stored in z? When z= x % y;​

Answers

Answered by aryaman08
1

Answer:

z=0

Explanation:

%(modulus) operator returns remainder of a division

25/5= remainder 0

Similar questions