C program to print all uppercase and lowercase alphabets
belongs to collection: C programming Looping (while, do while, for) programs
All Answers
total answers (1)
belongs to collection: C programming Looping (while, do while, for) programs
total answers (1)
To print uppercase alphabets, we are using a for loop from 'A' to 'Z' and printing the characters, and to print lowercase alphabets, we are using a another for loop from 'a' to 'z' and printing the characters.
Print Alphabets in Upper and Lower case using C program
Output
Capital (upper) case characters: 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 Lower case characters: 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 zneed an explanation for this answer? contact us directly to get an explanation for this answer