(PCC)::[how-to-write-a-C-Program-to-Display-Characters-from-A-to-Z-Using-Loop]::[c]
//Program to Print English Alphabets #include <stdio.h> int main() { char c; for (c = 'A'; c <= 'Z'; ++c) printf("%c ", c); return 0; }