TEZPUR 2025 — Computer PYQ
TEZPUR | Computer | 2025Find the value of m after the following statements are executed?
n = 235;
m = 0;
while (n > 0)
{m = m*10 + n MOD 10;
n = int(n/10);
}

Find the value of m after the following statements are executed?
n = 235;
m = 0;
while (n > 0)
{m = m*10 + n MOD 10;
n = int(n/10);
}