Horje
tolower funciton in cpp Code Example
convert whole string to lowercase c++
#include<bits/stdc++.h> 
using namespace std; 
main() { 
    string s = "Viet Nam"; 
    transform(s.begin(), s.end(), s.begin(), ::tolower); //lowercase
    cout << s << endl; 
}
tolower funciton in cpp
transform(s.begin(), s.end(), s.begin(), ::tolower); 




Cpp

Related
c++ fast Code Example c++ fast Code Example
c++ standard library source Code Example c++ standard library source Code Example
apply pca to dataframe Code Example apply pca to dataframe Code Example
inline function in c++ Code Example inline function in c++ Code Example
throw exception c++ Code Example throw exception c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8