#include<iostream>
#include<queue>
using namespace std;
int main(){
queue<string>q1;
q1.push("ANup");
q1.push("kumar");
q1.push("TIrkey");
q1.push("NIT");
while(!q1.empty()){
cout<<q1.front()<<" ";
q1.pop();
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: