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?
Select Answer
*s + 32
*s - 32
*s | 0x20
Both A and C