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
AnswerD.
A B
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board