/* C Program - Convert Uppercase Character to Lowercase */ #include<stdio.h> #include<conio.h> void main() { clrscr(); char ch; printf("Enter a character in uppercase : "); scanf("%c",&ch); ch=ch+32; printf("character in lowercase = %c",ch); getch(); }
If the answers is incorrect or not given, you can answer the above question in the comment box. If the answers is incorrect or not given, you can answer the above question in the comment box.