Write a C++ program to convert a string in lowercase.
Program Code:
#include<iostream>
using namespace std;
int main( )
{
int i;
char name[30];
cout<<"Enter your string to convert into lowercase : ";
cin.getline(name, 30);
cout<<endl;
for(int i=0;name[i]!='\0';i++)
{
name[i] = (name[i] >= 'A' && name[i] <= 'Z') ? (name[i] + 32) : name[i];
}
cout<<"Lowercase string is equal to: " << name;
cout<< endl;
return 0;
}
The program output is tested on www.jdoodle.com
Output:
Enter your string to convert into lowercase : MUKESH KUMAR
Lowercase string is equal to: mukesh kumar
Thanks
Mukesh Rajput
Post A Comment:
0 comments: