Back To C++ String Manipulation Functions
//program to demonstrate strlwr function in string.h to convert string into lower case #include
#include
#include
void main() { char str1[10],*str2; clrscr(); cout<<"\nenter string 1"; cin>>str1; str2=strlwr(str1); cout<