#include<stdio.h>
#include<string.h>
void main()
{
char a[20];
int x;
printf("enter the string:");
scanf("%s",a);
for(x=0;x<=strlen(a);x++)
{
if(a[x]>=65&&a[x]<=90)
a[x]=a[x]+32;
}
printf("%s",str);
}
#include<string.h>
void main()
{
char a[20];
int x;
printf("enter the string:");
scanf("%s",a);
for(x=0;x<=strlen(a);x++)
{
if(a[x]>=65&&a[x]<=90)
a[x]=a[x]+32;
}
printf("%s",str);
}