fork download
  1. # include <stdio.h>
  2.  
  3. void myToUpper(char s[]){
  4.  
  5. }
  6.  
  7. int main(){
  8. char s[100];
  9. scanf("%s",s);
  10. printf("%s -> ",s);
  11. myToUpper(s);
  12. printf("%s\n",s);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 5280KB
stdin
aBcDe
stdout
aBcDe -> aBcDe