49-Write a program to display A to Z characters.

Program: 49

Write a program to display A to Z characters.

#include 
#include 
int main()
{
    char c;
   for(c = 'A'; c <= 'Z'; ++c)
       printf("%c ", c);
   getch();
}
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
Lokesh Kumar: Being EASTER SCIENCE's founder, Lokesh Kumar wants to share his knowledge and ideas. His motive is "We assist you to choose the best", He believes in different thinking.
Related Post
Leave a Comment

This website uses cookies.