Wednesday, November 9, 2011

Print a-z with while loop.

#include<stdio.h>
#include<conio.h>
int main()
{
clrscr();
char ch='@';
while(ch!=('z'))
{
ch++;
printf("%c ",ch);
}
getch();
return 0;
}

From: Me

No comments:

Post a Comment

Comment of this content!