Free Discussion
At first you should take input . then you will convert it into lowercase. Its so easy..!
string myinput_string;
getline(cin,myinput_string);
for(int i=1;i
so the total sample program will be:
#inclue
using namespace std;
int main()
{
string myinput_string;
getline(cin,myinput_string);
for(int i=1;i
Quote: