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