c错误

int F()

{

int a=1;

int *b=&a;

free(b);

}

int main(void)

{

F();

}

这里不要free

原文地址:https://www.cnblogs.com/lexus/p/2963455.html