✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
string word = new string ( "1234");
string s = "5" + word [3] + word [2] + word [1];
System.Console.Write(s);
Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання:
(**CharpBase**)