Comment

avatar username
  • convert string to lowercase

for(char &c : s) c = tolower(c);

  • convert string to uppercase

for(char &c : s) c = toupper(c);

The actual rating of this user is 1537.

Original comment.

Statistics