✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int [] a, b, c;
a = new int [] {44, 55};
b = new int [] {44, 55};
c = new int [] {88, 89};
c = a;
System.Console.Write((a == b) + ":" + (a == c));
Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання:
(**CharpBase**)