Guest User

Untitled

a guest
Feb 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. void toLowerWord(char *str)
  2. {
  3. int i = 0;
  4. char c;
  5. while (str[i])
  6. {
  7. printf("%d ", i);
  8. c=tolower(str[i]);
  9. str[i] = c;
  10. i++;
  11. }
  12. }
  13. (2:58:33 PM) Eric Basso: there's the function again
Add Comment
Please, Sign In to add comment