CODING:
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char a[25];
clrscr();
printf("Enter string in upper case: ");
gets(a);
printf("\n\nString in lower case: %s",strlwr(a));
getch();
}
|
CODING |
|
OUTPUT |
For any query or suggestion please comment below...
No comments:
Post a Comment