Skip to main content

স্ট্রিং কে আপার কেস থেকে লোয়ার কেসে কীভাবে নিবো ? how to convert string uppercase to lowercase


#include <algorithm> #include <iostream> #include <string> using namespace std; int main(){ string str; getline(cin,str); transform(str.begin(), str.end(), str.begin(), ::tolower); cout<<str; return 0; }
-------------------------------------

Written By -