How to push numbers to queue using for loop in C++

1 Answer

0 votes
#include <iostream>
#include <queue>

using namespace std; 
  
void printQueue(queue<int>& q) { 
    while (!q.empty()) { 
        cout << q.front() << " "; 
        q.pop(); 
    } 
} 

int main() 
{ 
    queue<int> q; 
    
    for (auto i : {1, 2, 3, 4, 5}) q.push(i);

    printQueue(q);
} 



/*
run:

1 2 3 4 5 

*/

 



answered Apr 5, 2020 by avibootz

Related questions

1 answer 158 views
1 answer 132 views
1 answer 113 views
113 views asked Mar 14, 2024 by avibootz
1 answer 139 views
1 answer 109 views
1 answer 172 views
172 views asked Jun 14, 2020 by avibootz
2 answers 215 views
215 views asked Apr 24, 2018 by avibootz
...