S
Q. What will be the output of the following C# code?
Code:
static void Main(string[] args)
{
String name = "Dr.Gupta";
Console.WriteLine("Good Morning" + name);
}
{
String name = "Dr.Gupta";
Console.WriteLine("Good Morning" + name);
}
- Correct Answer - Option(C)
- Views: 147
- Filed under category C#
Discusssion
Login to discuss.