C Program to print A to Z Alphabets

 #include <stdio.h>

#include<conio.h>

void main() {

    char c;

    clrscr();

    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