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.
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
JCreate a free account to access the full topic