0
Write a program in C that deciphers words from a matrix that contains the values of the letters of the alphabet, as follows: A = 7, B = 8, C = 9, D = 10, E = 11, etc.Thus the code: a) 9 7 10 7, that is to say EVERY b) 9 7 10 11, that is to say CADE`
#include <stdio.h>
int main() {
int arrayLetras[10];
int i = 0;
int j;
char chrEspaco = ' ';
while(chrEspaco!='\n'){
scanf("%d%c",&arrayLetras[i++],&chrEspaco);
}
j = 0;
while(j < i) {
printf("%c ",arrayLetras[j]);
j++;
}
}
I stopped at that part, what should I do?
J.Donate, what is your intention in disfiguring the questions? They do not deserve such mistreatment
– Jefferson Quesado