Given: int m=5; m*=5 then the value stored in m results in 55. *
Answers
Answered by
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