fork download
  1. # include <stdio.h>
  2.  
  3. void myStrcpy(char s[], char t[]){
  4. int i;
  5. for(i=0;s[i]!='\0';i++){
  6. t[i]=s[i];
  7. }
  8.  
  9. }
  10.  
  11. int main(){
  12. int len;
  13. char s[100];
  14. char t[100];
  15. scanf("%s",s);
  16. myStrcpy(s,t);
  17. printf("s : %s\nt : %s\n",s,t);
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 5276KB
stdin
abcd
stdout
s : abcd
t : abcd