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