fork download
  1. # include <stdio.h>
  2.  
  3. void myStrcat(char s[], char t[]){
  4. int i,j;
  5. for(i=0;s[i]!='\0';i++);
  6. for(j=0;t[j]!='\0';j++){
  7. s[i+j]=t[j];
  8. }
  9. s[i+j]='\0';
  10. return;
  11.  
  12.  
  13. }
  14.  
  15. int main(){
  16. char s[100];
  17. char t[100];
  18. scanf("%s %s",s,t);
  19. printf("%s + %s",s,t);
  20. myStrcat(s,t);
  21. printf(" -> %s\n",s);
  22. return 0;
  23. }
  24.  
Success #stdin #stdout 0.01s 5264KB
stdin
abc def
stdout
abc + def -> abcdef