2023年12月15日发(作者:)

char *p = NULL;

p = (char *)malloc(128);

free(p);

p = NULL;

strcpy(p, "12131234");

}