次のコードがあり、配列内の各要素を出力したいと考えています。
struct pckt
{
float gen_time;
int node_id;
bool last;
int seq;
float end_time;
}
list<pckt> nodelist[51];
pckt newpckt;
newpckt.gen_time = inp;
newpckt.node_id = i;
newpckt.last = false;
newpckt.seq = 1;
newpckt.end_time = 1.0;
nodelist[i].push_back(newpckt);
// I wnat to print each element in array list.