Computer Science, asked by shriyans02, 11 months ago

Given: int m=5; m*=5 then the value stored in m results in 55. *


Answers

Answered by sanjeevsitapur2
4

Answer:

m=5;

=> m*=5;

=> m = m*5;

=> m = 5*5;

=> m = 25;

So, THIS the Required Value of m i.e. 25.

Similar questions