What will be the output of the following C# code?
static void Main(string[] args)
{
int n, r;
n = Convert.ToInt32(Console.ReadLine());
while (n > 0)
{
r = n % 10;
n = n / 10;
Console.WriteLine(+r);
}
Console.ReadLine();
}
for n = 5432.
static void Main(string[] args)
{
int n, r;
n = Convert.ToInt32(Console.ReadLine());
while (n > 0)
{
r = n % 10;
n = n / 10;
Console.WriteLine(+r);
}
Console.ReadLine();
}
for n = 5432.A. 3245
B. 2354
C. 2345
D. 5423
Answer: Option C

Join The Discussion