fork download
  1. #include <string.h>
  2.  
  3. int main() {
  4. char* s1="abc";
  5. char* s2="def";
  6.  
  7. strcpy(s1,s2);
  8.  
  9. return 0;
  10. }
Runtime error #stdin #stdout 0.01s 1716KB
stdin
Standard input is empty
stdout
Standard output is empty