RAPTOR Flowchart to convert Uppercase letters into Lowercase letters
Fig.: Flowchart to convert Uppercase letters into Lowercase letters |
Note:
- ASCII value of 'A' is 65, and 'a' is 97.
- If we add 32 into 65, we get 97 which is ASCII value of 'a'.
- Hence we add 32 into 'chr' variable in the flowchart. This process we repeat up to 'Z' in the flowchart using loop.
You may like to read C Program to convert uppercase letters into Lowercase letters here.
Write this program in algorithm also??
ReplyDelete