1 void GetMemory(char* p) 2 { 3 p=(char*)malloc(100); 4 } 5 void Test(void) 6 { 7 char *str=NULL; 8 GetMemory(str);//改为&str 9 strcpy(str,"helloworld"); 10 printf(str); 11 }
按照注释改能运行了,但是不知道为什么·······
原文地址:https://www.cnblogs.com/HY12345/p/9648939.html
时间: 2024-10-15 23:43:46