fork download
  1. #include <iostream>
  2. #include <boost/algorithm/string/case_conv.hpp>
  3.  
  4. int main()
  5. {
  6. std::string s = "test";
  7.  
  8. boost::algorithm::to_upper(s);
  9. std::cout << s << '\n';
  10. }
Success #stdin #stdout 0.01s 2856KB
stdin
Standard input is empty
stdout
TEST