#include #include #include int main() { char *p = (char *)malloc(32); if (NULL == p) { perror("malloc"); return 1; } // strcpy 用于字符串拷贝 strcpy(p, "disen"); printf("%s\n", p); free(p); return 0; }