C Program to convert all Uppercase characters to lowercase and vice-versa in a string.

Here is the c program to convert all uppercase characters into lowercase characters using the ASCII values. #include<stdio.h> #include<conio.h>   void main() {        char str[200];           int...