C Program to convert uppercase string to lowercase string
C Program to convert uppercase string to lowercase string Program Logic: The logic we have used in the program is: All the upper case characters (A-Z) have ASCII value ranging from 65 to 90 and their corresponding lower case characters (a-z) have ASCII value 32 greater than them. For example ‘A‘ has a ASCII value … Read more