Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 365 Bytes

File metadata and controls

23 lines (15 loc) · 365 Bytes

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.