La función tolower() se define en el archivo de encabezado ctype.h . Si el carácter pasado es un alfabeto en mayúsculas, la función tolower() convierte un alfabeto en mayúsculas en un alfabeto en minúsculas.
Sintaxis:
int tolower(int ch);
Parámetro: este método toma un parámetro obligatorio ch que es el carácter que se convertirá a minúsculas.
Valor devuelto: Esta función devuelve el carácter en minúscula correspondiente al ch.
Los siguientes programas ilustran la función tolower() en C:
Ejemplo 1:-
c
// C program to demonstrate // example of tolower() function. #include <ctype.h> #include <stdio.h> int main() { // Character to be converted to lowercase char ch = 'G'; // convert ch to lowercase using toLower() printf("%c in lowercase is represented as = %c", ch, tolower(ch)); return 0; }
G in lowercase is represented as = g
Ejemplo 2:-
c
// C program to demonstrate // example of tolower() function. #include <ctype.h> #include <stdio.h> int main() { int j = 0; char str[] = "GEEKSFORGEEKS\n"; // Character to be converted to lowercase char ch = 'G'; // convert ch to lowercase using toLower() char ch; while (str[j]) { ch = str[j]; // convert ch to lowercase using toLower() putchar(tolower(ch)); j++; } return 0; }
geeksforgeeks
Nota:
Si el carácter pasado en tolower() es cualquiera de estos tres
1. carácter minúscula
2. símbolo especial
3 digitos
tolower() devolverá el carácter tal como es.
Ejemplo :
C
// C program to demonstrate // example of tolower() function. #include <ctype.h> #include <stdio.h> int main() { int j = 0; char str[] = "GeEks@123\n"; char ch; while (str[j]) { ch = str[j]; putchar(tolower(ch)); j++; } return 0; } // code is contributed by codersaty
geeks@123
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