这样的程序都可以运行,吓死了!!
void Test(void)
{
char *str = (char *) malloc(7);
strcpy(str, "hello");
free(str);
if(str != NULL){
strcpy(str, "worlddddasdfasdfa");
printf(str);
}
}
int main()
{
Test();
system("pause");
return 0;
}
看来垂悬指针真实危险!!