Vidyalelo
C# Programming · Q110

Arrays and Strings in C Sharp

Programming · C# Programming · question 110

Q110

What will be the output of the following C# code? static void Main(string[] args) char A = 'K'; char B = Convert.ToChar(76); A++; B++; Console.WriteLine(A+ " " +B); Console.ReadLine();

A.
M L
B.
U L
C.
L M
Answer
D.
A B

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board