Convert Lower case string to Upper case string
# Program to Convert Lower case string to Upper case string: As we know that everything in the computer is in Binary Form, So for characters, we have standardized numeric codes and these codes are called ASCII ( American Standard Code for Information Interchange ) codes and UniCodes. The ASCII codes range of Upper case A to Z characters are 65 to 90 and lower case a to z are 97 to 122. So the difference between each upper case character and lower case character is 97 - 65 = 32, So If we have a Lower case character and we want to convert it to Upper case character, then we have to subtract 32 from it. and If we have Upper case character and we have to convert it to Lower case then we have to add 32 to it. # include < iostream > using namespace std ; /* * upper case A-Z ASCII value are 65-90 and lower case a-z values are 97-122 * So the difference between each upper case letter and lower case letter is * 97 - 65 = 32, So If we have ...