#include<stdio.h>
#include<conio.h>
int main()
{
char c;
printf("enter the character in upper case");
scanf("%c",&c);
printf("the lower case of character %c is %c",c,c+32);
}
#include<conio.h>
int main()
{
char c;
printf("enter the character in upper case");
scanf("%c",&c);
printf("the lower case of character %c is %c",c,c+32);
}
No comments:
Post a Comment