// Program
# include <stdio.h>
# include <string.h>
void main()
{
char S[100];
puts("Enter any string : ");
gets(S);
printf("Entered string is : %s",S);
printf("\nString in upper case is : %s",strupr(S));
printf("\nString in lower case is : %s",strlwr(S));
}
No comments:
Post a Comment
Note: only a member of this blog may post a comment.