Computer Science, asked by sgwenzi13, 1 month ago

Int n = 123456789; int m = 0; while (n != 0) { m = (10 * m) + (n % 10); n = n / 10; }

Answers

Answered by prabhu77
0

Explanation:

Int n = 123456789; int m = 0; while (n != 0) { m = (10 * m) + (n % 10); n = n / 10; }

Answered by atharvackulkarni
0

Answer:

this wont give out any output

Explanation:

the reason being while loop

Similar questions