C Program String tOGGLE cASE Conversion
Topic: /*C program to convert given string into tOOGLE cASE.*/ #include <stdio.h> int main() { char str[100]; int i; printf(“Enter a string to change into tOGGLE cASE : “); gets(str); /* toggle each string character if it is upper case, change to lower case if it is lower case, change into upper case*/… Read More »