Int n = 123456789; int m = 0; while (n != 0) { m = (10 * m) + (n % 10); n = n / 10; }
Answers
Answered by
0
Explanation:
Int n = 123456789; int m = 0; while (n != 0) { m = (10 * m) + (n % 10); n = n / 10; }
Answered by
0
Answer:
this wont give out any output
Explanation:
the reason being while loop
Similar questions