La función strlwr() es una función integrada en C y se usa para convertir una string determinada a minúsculas.
Sintaxis:
char *strlwr(char *str);
Parámetro:
- str: Esto representa la string dada que queremos convertir a minúsculas.
Devoluciones: Devuelve la string modificada obtenida después de convertir los caracteres de la string dada str a minúsculas.
Nota: Esta es una función no estándar que solo funciona con versiones anteriores de Microsoft C.
Los siguientes programas ilustran la función strlwr() en C:
Ejemplo 1:-
// C program to demonstrate // example of strlwr() function #include<stdio.h> #include<string.h> int main() { char str[ ] = "GEEKSFORGEEKS IS THE BEST"; // converting the given string into lowercase. printf("%s\n",strlwr (str)); return 0; }
Producción:
geeksforgeeks is the best
Ejemplo 2:-
// C program to demonstrate // example of strlwr() function. #include<stdio.h> #include <string.h> int main() { char str[] = "CompuTer ScienCe PoRTAl fOr geeKS"; printf("Given string is: %s\n",str); printf("\nString after converting to the " "lowercase is: %s",strlwr(str)); return 0; }
Producción:
Given string is: CompuTer ScienCe PoRTAl fOr geeKS String after converting to the lowercase is: computer science portal for geeks
Publicación traducida automáticamente
Artículo escrito por bansal_rtk_ y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA