Guest User

Untitled

a guest
Jan 21st, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. void Upper(char myName[])
  2. {
  3. int d;
  4. for(d = 0;d < strlen(myName); d++)
  5. {
  6. printf("%c",toupper(myName[d]));
  7. }
  8. }
Add Comment
Please, Sign In to add comment