How do I in this code, when it enters a letter read by the keyboard with the scanf of type (char) it repeats until the Z?
#include <stdio.h>
#include <stdlib.h>
int main()
{
char c;
/*for (c= 'A'; c<='Z'; c++){
printf("Letra = %c\n", c);
} */
system("pause");
return 0;
}