Go and Explore
Exploring my country on bike
Home
Interesting Programs
Conversion of Uppercase to Lowercase in C
Interesting Programs
Conversion of Uppercase to Lowercase in C
By
Unknown
At 10:11:00 AM
0
#
include
<stdio.h>
#include<conio.h>
void main()
{
char ch;
clrscr();
printf("Enter a Character");
scanf("%c",&ch);
if(ch>=65 && ch<=90)
ch=ch+32;
printf("Upper Case =%c",ch);
getch();
}
You Might Also Like
0 comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments ( Atom )
0 comments:
Post a Comment