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