Examveda

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

D. A B

Answer: Option C


Join The Discussion

Related Questions on Arrays and Strings in C Sharp