当前位置: 技术问答>linux和unix
数组字符串和指针字符串已经变量的生命期 问题
来源: 互联网 发布时间:2016-10-01
本文导语: 本帖最后由 yangtseriver1020 于 2010-06-09 20:14:47 编辑 #include #include char *GetMemory(void){ char * p= "hello world n"; return p; } void Test(void){ char * str = NULL; str = GetMemory(); printf(str); cout
#include
char *GetMemory(void){
char * p= "hello world n";
return p;
}
void Test(void){
char * str = NULL;
str = GetMemory();
printf(str);
cout