Saturday, 29 August 2020

Lower case program.

We can convert strings into lower case using this program.

#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char s[200]="RHN";
clrscr();
printf("%s",strlwr(s));
getch();
}

No comments:

Post a Comment

C Programming

What is DBMS in brief?

A Database Management System (DBMS) is a software suite designed to efficiently manage, organize, store, manipulate, and retrieve data. It a...