✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено на екран монітору у результаті виконання наступного коду на мові Go:
str := "012345678900"
a := []rune(str)
var b int
for ; b < len(a); b += 3 {
fmt.Printf("%c", a[b])
}