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
0
Answer:
yea what u want ........... .
Similar questions
Social Sciences,
2 months ago
Math,
2 months ago
English,
5 months ago
Math,
5 months ago
Biology,
10 months ago
Political Science,
10 months ago
Social Sciences,
10 months ago