以下代码之间的区别是什么:
char* str = "this is a string"
从这一个:
char* str = strdup("this is a string")
使用场景?
c
c ×1