Twitter Feed Facebook Google Plus Youtube

Adsense responsive

Recent Post below header

Wednesday 29 May 2013

C PROGRAM: TO CONVERT STRING FROM UPPERCASE TO LOWERCASE USING STRLWR() LIBRARY FUNCTION

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();
}

C program coding
CODING
C program output
OUTPUT
 
For any query or suggestion please comment below...
 
 

No comments:

Post a Comment