C Program To Print Alphabets Like {Az By Cx...}

How to write a C Program To Print Alphabets Like {Az By Cx...} in C Programming Language ?


Solution For C Program :

/*C Program To Print Alphabets Like {Az By Cx...}.*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j=122;
clrscr();
for(i=65;i<=90;i++)
{
printf("%c%c ",i,j);
j--;
}
getch();
}



OUTPUT :
Az By Cx Dw Ev Fu Gt Hs Ir Jq Kp Lo Mn Nm Ol Pk Qj Ri Sh Tg Uf Ve Wd Xc Yb Za


You may also learn these C Program/Code :

C Program To Swap Two Numbers Without Using Third Variable




Learn More :