Sunday, December 9, 2012

WAP to print Az By Cx Dw Series 29


#include<stdio.h>
#include<conio.h>

void main()
{
char i,j;

clrscr();
for(i=65,j=122;i<=90,j>=97;i++,j--)
{
printf("%c %c",i,j);
}
printf("\n");

for(i=97,j=90;i<=122,j>=65;i++,j--)
{
printf("%c %c",i,j);
}
getch();
}

No comments:

Post a Comment