C strlwr():
String Functions are the built-in functions provided by C to operate and manipulate a string. C strlwr() function converts a string to lowercase letters.
Syntax:
strlwr (string )
Example:
#include<stdio.h> #include <string.h> void main() { char str[10] = "Hello C."; printf("%s",strlwr(str)); } |
Output
hello c. |