10 Letters of English Alphabet

Report a typo

You have an array of 10 runes that represent the first 10 letters of the English Alphabet

letters := [10]rune{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'}

Print all these letters using the appropriate data type in a new line.

Sample Input 1:

Sample Output 1:

A
B
C
D
E
F
G
H
I
J
Write a program in Go
package main

import "fmt"

func main() {
letters := [10]rune{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'}
//put your code here
}
___

Create a free account to access the full topic