标签:color oid div 运行 char col str code printf
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 }
按照注释改能运行了,但是不知道为什么·······
标签:color oid div 运行 char col str code printf
原文地址:https://www.cnblogs.com/HY12345/p/9648939.html