Saturday, 11 February 2012

Program Of String Lower Case In C


#include<stdio.h>
#include<conio.h>
main()
{
clrscr();
char a[20];
puts("Enter String=");
gets(a);
printf("String In Lower CAe = %s",strlwr(a));
getch();
}

-------------------------------------------------------------------

String Lower Case Used to Convert The Upper Case (capital ) to Lower case.It is the part or type of String.

No comments:

Post a Comment