fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char str[]={"abcdasfdgje"};
  6. printf("%s",str);
  7. strcpy(str,"");
  8. printf("%s",str);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5432KB
stdin
Standard input is empty
stdout
abcdasfdgje