What will be the output of the following C# code snippet?
static void Main(string[] args)
{
Console.Write("c");
Console.Write("sharp" );
Console.ReadLine();
}
static void Main(string[] args)
{
Console.Write("c");
Console.Write("sharp" );
Console.ReadLine();
}
A. sharp
B. c
sharp
C. c
D. sharp c
Answer: Option B
Join The Discussion