Computer Science, asked by sananagalakshmi99, 5 months ago

public class Program
{
public static void Main(string[] args)
{
intl arr = new int[2]
का
arr[1] = 10;
Object o = arr;
int[] arr1 = (int[])o;
arr1[1] = 100;
Console.WriteLine(arr[1]);
(int[])o)[1] = 1000;
Console.WriteLine(arr[1]);
}
} ​

Answers

Answered by shaillendersinghsola
0

Answer:

yea what u want ........... .

Similar questions