Saturday 10 December 2011

Write a program to print this Series in c

A C E G I K M O Q S U W Y

#include
#include
main()
{
int i;
clrscr();
for(i=65;i<=90;i=i+2)
printf("%c%c",i,i+33);
getch();
}


OUTPUT
A C E G I K M O Q S U W Y

No comments:

Post a Comment