fork(1) 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. printf("%d",'a');
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.01s 5284KB
stdin
aBcDe
stdout
aBcDe -> aBcDe
97