Computer Science, asked by varaprasadk39, 6 months ago

What will be the output of the following code snippet:
using System;
public class Program
{
public static void Main(string( args)
{
int( arr = new int[2];
arr(1) = 10;
Object o = arr,
int[] arr1 = (int[])o;
arri [1] = 100;
Console.WriteLine(arr[1]);
((int))[1] = 1000
Console.WriteLine(arr[1]);
)
}}​

Answers

Answered by ninja0423
0
God know what will be the out put!?!....
Similar questions