Write a loop to store the letters "f" through "w" in an array named letters.
Then, print the contents of the array to the screen.
sample run
['f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w']
Answers
Answered by
0
Answer:
Explanation:
char c[19];
for(int i=70, j=0;i<119 || j<19;i++,j++)
c[j]=i;
for(int j=0;j<19;j++)
printf(%c,c[j]);
Similar questions