PROGRAM TO CHANGE THE CASE(LOWER-UPPER/UPPER-LOWER)
int main()
{
char c;
c=getchar();
if(c>65&&c<90)
c=c+32;
if(c>=97&&c<=122)
{
c=c-32;
printf("%c",c);
}
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment