子函數不能傳遞動態內存的緣由解析

舉例:c++ voidGetMemory(char *p) {      p = (char *)malloc(100); } void Test(void) {     char *str = NULL;     GetMemory(str);     strcpy(str, "hello world");     printf(str); } 請問運行Test 函數會有什麼樣的結果? 答:程序
相關文章
相關標籤/搜索