Write a C language program to display all alphabet characters.



#include<stdio.h>
#include<conio.h>

int main(){
    char ch;
    printf("A to Z Alphabets: \n");

    for(ch='A';ch<='Z';ch++)
    {
        printf("%c  ",ch);
    }
    getch();
}

Input/Output:

A to Z Alphabets:

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

No comments

Dear Members, Thanks for Your Comments. We must be reply your comment answer as soon as possible. Please Stay with us.....

Theme images by ideabug. Powered by Blogger.