This is very important thing while solving the question of string category, where have to implement the string operations. If we want to change a small letter into capital letter, then subtract 32 from this letter, and if want to change a capital letter into small letter then we have to add 32 in this letter.
or just do this:
char(ch^' ')
Marvelous! Did not know this technique until today.