Problem Statement
Write a program in C to convert the given string from upper case to lower case.
How to convert a upper case string to lower case string in C ?
#include<stdio.h>
#include<string.h>
int main()
{
char str[ ] = "THIS IS ABUNDANTCODE.COM";
printf("%s\n",strlwr (str));
return 0;
}
Leave a Reply