#include<stdio.h>
#include<string.h>
//char a[50];
char *mystring(){
static char a[50];
//char *p="hello world";
strcpy(a,"hello world");//因为有a无释放
return a;
}
int main(){
char *p;
p=mystring();
printf("%s",mystring());
return 0;
}