结构体初始化和new delete

int *p;

p=new int[100];

delete []p;

结构体中的指针需要初始化

原文地址:https://www.cnblogs.com/h694879357/p/11885846.html