Computer Science, asked by vimal6981, 6 months ago

If int a=25, b=5, c=0, what value is stored in c when c=a%b?

Answers

Answered by Rakshit678
5

Answer:

0

Explanation:

Answered by sharmapradyum273Pro
12

Answer:

c=0

Explanation:

since value of A is 25 & value of B is 5

and in computer % sign returns remainder

therefore when 25%5 the remainderis 0

Similar questions