Thursday, 13 October 2016

program to lowercase a string or word using strlwr() function

#include<stdio.h>
#include<string.h>
int main()
{
char a[10];
int i;
printf ("enter the string :");
gets(a);
strlwr(a);
printf("the lower case string :");
puts(a);
}

No comments:

Post a Comment