Getmemory函數詳解--內存操做的理解

題目:void GetMemory(char *p) { p = (char *)malloc(100); } void Test(void) { char *str = NULL; GetMemory(str); strcpy(str, "hello world"); printf(str); } 請問運行Test 函數會有什麼樣的結果? 分析:程序崩潰。由於GetMemory 並不能傳遞動態內
相關文章
相關標籤/搜索