#include<iostream>

#include<queue>

using namespace std;

int main(){
    queue<string>q1;

    q1.push("Anup Tirkey is NIT.");
    q1.push("Anup TIrkey is a Mechanical ENgineer.");
    q1.push("Anup Tirkey is a SAI engineer.");
    q1.push("Show Mechanical Constraint is reporting to Anup Tirkey is System");
    q1.push("Anup TIrkey is married to Shashi P Tirkey");
    while(!q1.empty()){
        cout<<q1.front()<<endl;
        q1.pop();
    }
    return 0;

}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: