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