Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnologicalJerry committed Jun 4, 2022
1 parent 42a794c commit ac3ec98
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Strlwr.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <stdio.h>
#include <string.h>
int main() {
char str[20];
printf("Enter string: ");
gets(str);
printf("String is: %s", str);
printf("\nLower String is: %s", strlwr(str));
return 0;
}

0 comments on commit ac3ec98

Please sign in to comment.