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