//C++ new delete struct动态分配结构内存#include #include using namespace std; struct man { char name [10]; int num; char sex; }; int main ...
www.ok2002.com