c++ 二维结构体数组定义

struct Dis{
        string  distance;
        int num;

};

 Dis (*store)[N]=new Dis[N][N];

 delete []store;

你可能感兴趣的:(C++,programming)