Skip to main content

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

#include <algorithm> #include <iostream> #include <string> using namespace std; int main() { string str; getline(cin,str); transform(str.begin(), str.end(), str.begin(), ::toupper); cout&lt;<str 0="" return="" xmp=""> </str></string></iostream></algorithm>
-------------------------------------

Written By -