Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2. #include<string.h>
  3. void f(char *x)
  4. {
  5. *x=toupper(*x);
  6. }
  7. int main()
  8. {
  9. char a;
  10. scanf("%c", &a);
  11. f(&a);
  12. printf("%c",a);
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement