Here we will change string case with and without strlwr, strupr functions.
strlwr in c
#include<stdio.h>
#include<string.h>
main()
{
char string[] = "Strlwr in C";
printf("%s\n",strlwr(string));
return 0;
}
No comments:
Post a Comment