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