Convert The Given String To LowerCase Given a String S, Your Task Is To Convert Characters Of String To Lowercase. Input: S = "ABCddE" Output: S = "abcdde" Explanation: A, B, C and E are converted to a, b, c and e thus all are uppercase characters of the string converted to lowercase letter.