Advertisement
sujonshekh

Lower Case To Upper Case

Jul 29th, 2016
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include<string.h>
  2. int main()
  3. {
  4.     char s[10], * temp;
  5.     gets(s);
  6.     int len = strlen(s);
  7.     printf("length of the string %d\n", len);
  8.     temp = strlwr(s);
  9.     printf("Lower cased string %s", temp);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement