Discussion :: C#.Net MCQs
-
Select the output for the following set of 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.
Answer : Option C
Explanation :
Reverse of number using while loop. Output: 2345.
Be The First To Comment