- 1
what value is stored in the result variable ?
int x = 8, y = 5; int result = x%y; i dont understand the code abovec
2 Réponses
+ 4
Boy Arya the remaining value after the division will be store in the variable result which is 8%5 == 3
int x = 8, y = 5; int result = x%y; i dont understand the code abovec