Welcome to the World of Online Learning:
Hello Friends “This blog helps you to learn C programming concepts. You can learn C language at your own speed and time. One can learn concepts of C language by practicing various programs given on various pages of this blog. Enjoy the power of Self-learning using the Internet.”

Write a C program to Toggle case of string
PROGRAM: Toggle case of string
/* TOGGLE CASE OF STRING */
#include<stdio.h>
int main()
{
char str[100];
int i;
printf("Please enter a string: ");
// gets(str);
// fgets is a better option over gets to read multiword string .
fgets(str, 100, stdin);
// Following can be added for extra precaution for '\n' character
// if(str[length(str)-1] == '\n') str[strlen(str)-1]=NULL;
for(i=0;str[i]!=NULL;i++)
{
if(str[i]>='A'&&str[i]<='Z')
str[i]+=32;
else if(str[i]>='a'&&str[i]<='z')
str[i]-=32;
}
printf("String in toggle case is: %s",str);
return 0;
}