English Alphabets


ENGLISH ALPHABETS


 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

Comments

Popular posts from this blog

Prime Number

Palindromic Number