105. Strings and Character Handling-ii

Question.1

A developer converts uppercase characters to lowercase without using tolower():

void to_lower(char *s) {
   while (*s) {
       if (*s >= 'A' && *s <= 'Z')
            *s = ___;
       s++;
   }
}

What goes in the blank?

Need Help? Refer to the Quick Guide below

Select Answer