C program to display characters from A to Z using loop

PROGRAM-1:

Program to display english alphabets

#include <stdio.h>
int main()
{
    char c;

    for(c = 'A'; c <= 'Z'; ++c)
       printf("%c ", c);
    
    return 0;
}


OUTPUT:


A B C D E F G H I J K L M N O P Q R S T U V W X Y Z


PROGRAM-2:


Program to display english alphabets in uppercase and lowercase


#include <stdio.h>
int main()
{
    char c;

    printf("Enter u to display alphabets in uppercase. And enter l to display alphabets in lowercase: ");
    scanf("%c", &c);

    if(c== 'U' || c== 'u')
    {
       for(c = 'A'; c <= 'Z'; ++c)
         printf("%c ", c);
    }
    else if (c == 'L' || c == 'l')
    {
        for(c = 'a'; c <= 'z'; ++c)
         printf("%c ", c);
    }
    else
       printf("Error! You entered invalid character.");
    return 0;
}


OUTPUT:


Enter u to display alphabets in uppercase. And enter l to display alphabets in lowercase: l
a b c d e f g h i j k l m n o p q r s t u v w x y z