/* WAP to print Block Letter and Small Case Alpahbets using C*/
//Hint:use ascii code(value) to print
#include
#include
void main()
{
int i;
clrscr();
//Block Letters Alphabets
printf("Block Letters Alphabets\n");
for (i=65;i<=90;i++)
{
printf("%c\t",i);
}
printf("\nSmall Case Alphabets\n");
//Small Letters Alphabets
for (i=97;i<123;i++)
{
printf("%c\t",i);
}
getch();
}