51. What will be the output of the following C# code snippet?
class Program
{
static void Main(string[] args)
{
int x, y = 1;
x = 10;
if(x != 10 && x / Convert.ToInt32(0) == 0)
Console.WriteLine(y);
else
Console.WriteLine(++y);
Console.ReadLine();
}
}
class Program
{
static void Main(string[] args)
{
int x, y = 1;
x = 10;
if(x != 10 && x / Convert.ToInt32(0) == 0)
Console.WriteLine(y);
else
Console.WriteLine(++y);
Console.ReadLine();
}
}