#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
#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
Glad you came by. Its a Education Blog
This is a Education Blog, Primarily for Tech and Programing.