Posts by g_lob00 • 23 points
2 posts
-
1
votes1
answer154
viewsQ: Print the letters in front of the alphabet
The idea of the code was to enter a letter, for example 'a' and return a letter in front of the alphabet, in this case the letter 'b', but the program does not return anything and I can not find the…
-
0
votes1
answer28
viewsQ: Program ignores the first scan of the loop
Basically I have this program int main(){ coordenada lista1_coordenadas[3]; coordenada lista2_coordenadas[3]; for (int i=0;i<3;i++){ printf("Leia a coordenada %d da primeira lista:\n", i+1);…