What will be the output of the following C# code snippet?
class Program
{
static void Main(string[] args)
{
String c = " Hello World ";
String s = c.Trim();
Console.WriteLine("""+s+""");
Console.ReadLine();
}
}
class Program
{
static void Main(string[] args)
{
String c = " Hello World ";
String s = c.Trim();
Console.WriteLine("""+s+""");
Console.ReadLine();
}
}A. " Hello World "
B. "HelloWorld"
C. "Hello World"
D. "Hello"
Answer: Option C

Join The Discussion