Lynn
1
Q:

Create a program that displays the letters A to Z.

#include <stdio.h>
int main() {
    char c;
    for (c = 'A'; c <= 'Z'; ++c)
        printf("%c ", c);
    return 0;
}
0

New to Communities?

Join the community