#include <iostream>
#include<queue>
using namespace std;
int main(){
queue<string>q1;
q1.push("Anup Tirkey");
q1.push("Mechanical Engineer");
q1.push("NIT");
q1.push("show the mechanical constraint is reporting to ANup Kumar Tirkey in System");
while(!q1.empty())
{
cout<<q1.front()<<endl;
q1.pop();
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: