किसी स्ट्रिंग के अक्षरों को छोटे अक्षरों में बदलने के लिए किस फंक्शन का उपयोग किया जाता है?
Answers
Answered by
0
strlwr( ) फ़ंक्शन
Explanation:
strlwr( ) फ़ंक्शन एक सी स्ट्रिंग फ़ंक्शन है, जिसका उपयोग उपयोगकर्ता द्वारा निर्दिष्ट वर्णों या स्ट्रिंग को लोअरकेस अक्षरों में बदलने के लिए किया जाता है।
C program
#include <stdio.h>
#include <string.h>
int main()
{
char string[1000];
printf("Input a string to convert to lower case\n");
gets(string);
printf("The string in lower case: %s\n", strlwr(string));
return 0;
}
OUTPUT
Input a string to convert to lower case
PATIALA
The string in lower case: patiala
Similar questions
Social Sciences,
5 months ago
Math,
5 months ago
English,
5 months ago
Math,
11 months ago
Computer Science,
11 months ago
Math,
1 year ago