?????????????????Σ?

#include<iostream>
using namespace std;
char* GetMe()
{
 char st[]="hello word!";
 return st;
 
}
int main()
{
 char *str;
 str=GetMe();
 cout<<str<<endl;
 return 0;
}


??????δ???????????????????????????????????????GetMe?????е?str??????????????????????飬??????????е????????????????ú????????????st??????????????????????????????????????????е??????п?????????????????п???????????????????????????????????????????????????????????????????????????????????????????????????????????й??????????????????????

#include<iostream>
using namespace std;
const char* GetMe()
{
 char *st="hello word!";
 //*st='t';
 return st;
 
}
int main()
{
 const char *str;
 str=GetMe();
 cout<<str<<endl;
 return 0;
}


????char *st=“hello word??”??????δ????е?char st[]="hello word!"????????char *st=“hello word??”?????????????????????????????????????????????????????б??????????????У?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

??????????????????? ?????????飺

????1?????????????????????????????????洢?????????????????????????????????????????????????????????????????????????????

????2????????????????????????????????????????????????

????3?????????????????????????????????????????????棬?????????????檔

????4?????????????????????????

???????????????????????????ξ??????????????????????????????棬????????????????

#include<iostream>
using namespace std;
const char* GetMe()
{
 static char st[]="hello word!";
 //*st='t';
 return st;
 
}
int main()
{
 const char *str;
 str=GetMe();
 cout<<str<<endl;
 return 0;
}