How to accept a string in upper case and print it by lower case with C++ Program

CWC
0 Min Read

Accept a string in upper case and print it by lower case with C++ Program

# include 
# include  
# include  
using namespace std; 
int main( ) 
{ 
char ch,c; 
cout<<"enter a string in upper case:"; 
while(( ch=getchar( ))!='\n')
{
 c=ch+32; putchar(c);
} 
cout<<" is in lower case"; 
return 0; 
}
Share This Article
Leave a comment

Leave a Reply

Your email address will not be published. Required fields are marked *

English
Exit mobile version