Q. What will be the output of the following C# code?
Code:
static void Main(string[] args)
{
char c = 'g';
string s = c.ToString();
string s1 = "I am a human being" + c;
Console.WriteLine(s1);
Console.ReadLine();
}
β
Correct Answer: (B)
I am a human being