C program for strlwr() function.

In C language, strlwr() function is used to convert alphabets of string in to lower case .This function is defined in Header File <string.h>.
सी लैंग्वेज में strlwr() फंक्शन का प्रयोग स्ट्रींग के अल्फाबेट्स को लोअर केस में परिवर्तित करने के लिए किया जाता है। यह फंक्शन string.h हैडर फाइल में परिभाषित है।

Syntax:-
char* strlwr("string");
char* strlwr(char* string);

Example:-
char a[10]="CoMPuTer";
strlwr(a);

Output:-
a=computer

C Program for strlwr() :-

#include<stdio.h>
#include<conio.h>
#include<string.h>
main() {
char s[255];
clrscr();
printf("Enter a string\n");
gets(s);
strlwr(s);
printf("String in lower case = %s\n",s);
getch();
return 1;
}

Output:-
Enter a string
@$IndORe123
String in lower case = @$indore123

No comments:

Post a Comment