nikolas_serafini

Lista 8 - Exercício 9

Aug 11th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.09 KB | None | 0 0
  1. void lowerToUpper(char *s) {
  2.  
  3.     while(*s++ != '\0')
  4.         if(*s >='a' && *s <='z')
  5.             *s-=32;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment