#include<stdio.h>
#include<conio.h>
void main()
{
char a;
clrscr();
printf("enter an alphabet:");
scanf("%c",&a);
if(a>='A'&&a<='Z')
printf("upperchase");
else
printf("lowerchase");
getch();
}
#include<conio.h>
void main()
{
char a;
clrscr();
printf("enter an alphabet:");
scanf("%c",&a);
if(a>='A'&&a<='Z')
printf("upperchase");
else
printf("lowerchase");
getch();
}
No comments:
Post a Comment