✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What value will the following code display?
std::queue
q;
q.push(10); q.push(20); q.push(30);
std::cout << q.front() <<""<< q.back();