#include < string >
#include < stdio.h >
#include < ctype.h >
using namespace std;
void stoupper(string& s) {
string::iterator i = s.begin();
string::iterator end = s.end();
while (i != end) {
*i = toupper((unsigned char)*i);
++i;
}
}
int main() {
string str = "Some string";
stoupper(str);
}
Комментариев нет:
Отправить комментарий