Saturday 5 July 2014

Print English alphabets A to Z



//Alphabets
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
char ch='A';
do
{
cout<<"\t"<<ch;
ch=ch+1;
}while(ch<='Z');
getch();
}

No comments:

Post a Comment