RosettaCodeData/Task/String-case/C++/string-case-2.cpp

13 lines
205 B
C++
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
#include <iostream>
#include <string>
using namespace std;
int main() {
string foo("_upperCas3Me!!");
str_toupper(foo);
cout << foo << endl;
str_tolower(foo);
cout << foo << endl;
return 0;
}