Guest User

true

a guest
Oct 23rd, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. for (pch = s1; *pch; pch++) {
  2. if (isalpha(*pch)) {
  3. if (isupper(s1[0]))
  4. *pch = toupper(*pch);
  5. else
  6. *pch = tolower(*pch) ;
  7. }
  8. else continue;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment