fork download
  1. # include <stdio.h>
  2.  
  3. void myToUpper(char s[])
  4. {
  5. for(int i=0; s[i]!='\0'; i++)
  6. {
  7. if('a'<=s[i] && s[i]<='z')
  8. {
  9. s[i]=s[i]-32;
  10. }
  11.  
  12. }
  13.  
  14. }
  15.  
  16. int main(){
  17. char s[100];
  18. scanf("%s",s);
  19. printf("%s -> ",s);
  20. myToUpper(s);
  21. printf("%s\n",s);
  22. return 0;
  23. }
  24.  
Success #stdin #stdout 0s 5280KB
stdin
aBcDe
stdout
aBcDe -> ABCDE