#include<stdio.h>
#include<stdlib.h>
char* re()
{
char *p = "hello";
return p;
}
int main()
{
char* tem = re();
printf("%s", tem);
return 0;
}
my compiler is Dev-C++. I think that when the function of 're' completes, the pointer of 'p' will be deleted and the stack space which 'p' havs pointed to also will be deleted. So the pointer of 'tem' can not visit the stack space which the 'p' points to. In my opinions, this code will appear some bugs. but why not?
This problem distorts me a long time. If you can tell me the reason, i will appreciate your kind heart.